summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/slicing/exceptions/Test.ice
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2017-05-04 12:11:21 -0400
committerBernard Normier <bernard@zeroc.com>2017-05-04 12:11:21 -0400
commit8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611 (patch)
tree0a4d95032906d08ba46fc7433c5a890f8ac28941 /csharp/test/Ice/slicing/exceptions/Test.ice
parentFixed allTests.py to support --workers even when cross testing (diff)
downloadice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.tar.bz2
ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.tar.xz
ice-8e2d2f4e7ce61c451014acd3d7b8a27ee5ad0611.zip
Removed optional semicolons after braces
Diffstat (limited to 'csharp/test/Ice/slicing/exceptions/Test.ice')
-rw-r--r--csharp/test/Ice/slicing/exceptions/Test.ice20
1 files changed, 10 insertions, 10 deletions
diff --git a/csharp/test/Ice/slicing/exceptions/Test.ice b/csharp/test/Ice/slicing/exceptions/Test.ice
index 3ce6959161d..c6931b59a43 100644
--- a/csharp/test/Ice/slicing/exceptions/Test.ice
+++ b/csharp/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();
-};
+}
-};
+}