diff options
author | Joe George <joe@zeroc.com> | 2016-07-27 14:36:18 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2016-07-27 14:36:18 -0400 |
commit | f494f16d6c02df4fe06bf9854cc45fb4b2a93b48 (patch) | |
tree | 9a3099465f6d2528cd6686c9802e579234623b35 /python/test/Ice/slicing/exceptions | |
parent | C++11 CertificateVerifier and PasswordPrompt (diff) | |
download | ice-f494f16d6c02df4fe06bf9854cc45fb4b2a93b48.tar.bz2 ice-f494f16d6c02df4fe06bf9854cc45fb4b2a93b48.tar.xz ice-f494f16d6c02df4fe06bf9854cc45fb4b2a93b48.zip |
ICE-7242 - Cross test updates
Diffstat (limited to 'python/test/Ice/slicing/exceptions')
-rw-r--r-- | python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice b/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice index 3b9d0a22a00..5493dd451ed 100644 --- a/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice +++ b/python/test/Ice/slicing/exceptions/ServerPrivateAMD.ice @@ -34,4 +34,19 @@ exception UnknownMostDerived2 extends UnknownIntermediate string umd2; }; +class SPreservedClass extends BaseClass +{ + string spc; +}; + +exception SPreserved1 extends KnownPreservedDerived +{ + BaseClass p1; +}; + +exception SPreserved2 extends SPreserved1 +{ + BaseClass p2; +}; + }; |