1 // **********************************************************************
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
8 // **********************************************************************
17 local interface i2 extends i1 {}; // error
19 interface i3 extends i2 {}; // error
21 local interface i4 extends i2 {}; // OK
23 class c1 implements i1 {}; // OK
25 class c2 implements i2 {}; // error
27 local exception le {};
31 void op() throws le; // error
34 exception le2 extends le {}; // error
36 local sequence<long> lls;
40 LocalObject lo1; // error
56 sequence<LocalObject> los; // error
58 local sequence<byte> bs;
59 dictionary<bs, long> d1; // error
60 dictionary<long, bs> d2; // error
61 dictionary<bs, bs> d3; // error
87 void op() throws E; // error
92 void op() throws E; // error