summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/exceptions/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/exceptions/Test.ice')
-rw-r--r--cpp/test/Ice/exceptions/Test.ice28
1 files changed, 14 insertions, 14 deletions
diff --git a/cpp/test/Ice/exceptions/Test.ice b/cpp/test/Ice/exceptions/Test.ice
index 0d83efeac97..145811a6449 100644
--- a/cpp/test/Ice/exceptions/Test.ice
+++ b/cpp/test/Ice/exceptions/Test.ice
@@ -16,59 +16,59 @@ module Test
interface Empty
{
-};
+}
interface Thrower;
exception A
{
int aMem;
-};
+}
exception B extends A
{
int bMem;
-};
+}
exception C extends B
{
int cMem;
-};
+}
exception D
{
int dMem;
-};
+}
exception E
{
string data;
-};
+}
["cpp:ice_print"]
exception F
{
string data;
-};
+}
local exception G
{
string data;
-};
+}
["cpp:ice_print"]
local exception H
{
string data;
-};
+}
module Mod
{
exception A extends ::Test::A
{
int a2Mem;
- };
-};
+ }
+}
interface Thrower
{
@@ -98,12 +98,12 @@ interface Thrower
void throwAfterResponse();
void throwAfterException() throws A;
-};
+}
interface WrongOperation
{
void noSuchOperation();
-};
+}
-};
+}