diff options
author | Michi Henning <michi@zeroc.com> | 2004-08-31 04:36:28 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-08-31 04:36:28 +0000 |
commit | b48723e3d4ba8b7d3626c052ff398697731370a2 (patch) | |
tree | c038aa8cea773a7ae45dc511ea5548730801884b /java/test/Ice/slicing/exceptions/Test.ice | |
parent | initial check-in (diff) | |
download | ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.bz2 ice-b48723e3d4ba8b7d3626c052ff398697731370a2.tar.xz ice-b48723e3d4ba8b7d3626c052ff398697731370a2.zip |
Deprecation of global Slice definitions.
Diffstat (limited to 'java/test/Ice/slicing/exceptions/Test.ice')
-rw-r--r-- | java/test/Ice/slicing/exceptions/Test.ice | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/java/test/Ice/slicing/exceptions/Test.ice b/java/test/Ice/slicing/exceptions/Test.ice index cc3e8b3f85f..1bf3f61f5b5 100644 --- a/java/test/Ice/slicing/exceptions/Test.ice +++ b/java/test/Ice/slicing/exceptions/Test.ice @@ -10,6 +10,9 @@ #ifndef TEST_ICE #define TEST_ICE +module Test +{ + exception Base { string b; @@ -30,7 +33,7 @@ exception KnownMostDerived extends KnownIntermediate string kmd; }; -["ami"] interface Test +["ami"] interface TestIntf { void baseAsBase() throws Base; void unknownDerivedAsBase() throws Base; @@ -51,4 +54,6 @@ exception KnownMostDerived extends KnownIntermediate void shutdown(); }; +}; + #endif |