diff options
Diffstat (limited to 'ruby/test/Ice/objects/Forward.ice')
-rw-r--r-- | ruby/test/Ice/objects/Forward.ice | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ruby/test/Ice/objects/Forward.ice b/ruby/test/Ice/objects/Forward.ice new file mode 100644 index 00000000000..5cc93e83b4a --- /dev/null +++ b/ruby/test/Ice/objects/Forward.ice @@ -0,0 +1,20 @@ +// +// Copyright (c) ZeroC, Inc. All rights reserved. +// + +#pragma once + +module Test +{ + +class F1 +{ + string name; +} + +interface F2 +{ + void op(); +} + +}; |