summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/slicing/exceptions/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/slicing/exceptions/Test.ice')
-rw-r--r--cpp/test/Ice/slicing/exceptions/Test.ice20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpp/test/Ice/slicing/exceptions/Test.ice b/cpp/test/Ice/slicing/exceptions/Test.ice
index 3ce6959161d..c6931b59a43 100644
--- a/cpp/test/Ice/slicing/exceptions/Test.ice
+++ b/cpp/test/Ice/slicing/exceptions/Test.ice
@@ -15,39 +15,39 @@ module Test
exception Base
{
string b;
-};
+}
exception KnownDerived extends Base
{
string kd;
-};
+}
exception KnownIntermediate extends Base
{
string ki;
-};
+}
exception KnownMostDerived extends KnownIntermediate
{
string kmd;
-};
+}
["preserve-slice"]
exception KnownPreserved extends Base
{
string kp;
-};
+}
exception KnownPreservedDerived extends KnownPreserved
{
string kpd;
-};
+}
["preserve-slice"]
class BaseClass
{
string bc;
-};
+}
["format:sliced"]
interface Relay
@@ -57,7 +57,7 @@ interface Relay
void unknownPreservedAsBase() throws Base;
void unknownPreservedAsKnownPreserved() throws KnownPreserved;
-};
+}
["format:sliced"]
interface TestIntf
@@ -93,6 +93,6 @@ interface TestIntf
void relayUnknownPreservedAsKnownPreserved(Relay* r) throws KnownPreserved;
void shutdown();
-};
+}
-};
+}