diff options
author | Michi Henning <michi@zeroc.com> | 2004-02-24 07:09:29 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2004-02-24 07:09:29 +0000 |
commit | 0802f5204cd7a50007b97e71aa8b58bfe9d03c95 (patch) | |
tree | a624d91c4848c2f5296a868f47bdd6bea161a881 /java/test/Ice/slicing/exceptions/Test.ice | |
parent | *** empty log message *** (diff) | |
download | ice-0802f5204cd7a50007b97e71aa8b58bfe9d03c95.tar.bz2 ice-0802f5204cd7a50007b97e71aa8b58bfe9d03c95.tar.xz ice-0802f5204cd7a50007b97e71aa8b58bfe9d03c95.zip |
Added AMI and AMD tests for exception slicing. Removed a few redundant
semicolons from the source.
Diffstat (limited to 'java/test/Ice/slicing/exceptions/Test.ice')
-rw-r--r-- | java/test/Ice/slicing/exceptions/Test.ice | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/test/Ice/slicing/exceptions/Test.ice b/java/test/Ice/slicing/exceptions/Test.ice index 27b2aa99bd8..cb42aa4d87c 100644 --- a/java/test/Ice/slicing/exceptions/Test.ice +++ b/java/test/Ice/slicing/exceptions/Test.ice @@ -35,7 +35,7 @@ exception KnownMostDerived extends KnownIntermediate string kmd; }; -interface Test +["ami"] interface Test { void baseAsBase() throws Base; void unknownDerivedAsBase() throws Base; @@ -45,7 +45,7 @@ interface Test void unknownIntermediateAsBase() throws Base; void knownIntermediateAsBase() throws Base; void knownMostDerivedAsBase() throws Base; - void knownIntermediateAsknownIntermediate() throws KnownIntermediate; + void knownIntermediateAsKnownIntermediate() throws KnownIntermediate; void knownMostDerivedAsKnownIntermediate() throws KnownIntermediate; void knownMostDerivedAsKnownMostDerived() throws KnownMostDerived; |