summaryrefslogtreecommitdiff
path: root/cpp/test/Slice/errorDetection/DeclaratorMissing.ice
blob: ebe98b7a55ac969943911774e5ef68a0fc5e59c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

module Test
{

interface Foo
{
    int bar(string, long l, out bool, out short s);
    int bar2(string s, long, out bool b, out short);
}

}