blob: ae69083cba2401d21019cb2cca984c497c6a4936 (
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
{
void bar(long l1, out long l2, long l3);
void baz(out long l2, long l3);
}
}
|