summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/ParamsOutOfOrder.ice
blob: abd06967df5f5a00f5bf03b007391b063550f438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************

module Test
{

interface Foo
{
    void bar(long l1, out long l2, long l3);
    void baz(out long l2, long l3);
}

}