blob: cb4cbf4a709d91fbb867e950e33c510bf3e5ea75 [file] [log] [blame]
Sebastian Redl4994d2d2009-07-04 11:39:00 +00001// RUN: clang-cc -fsyntax-only -verify -fms-extensions %s
Sebastian Redl6a7330c2009-05-29 15:01:05 +00002
3// Straight from the standard:
4// Plain function with spec
5void f() throw(int);
6// Pointer to function with spec
7void (*fp)() throw (int);
8// Function taking reference to function with spec
9void g(void pfa() throw(int));
10// Typedef for pointer to function with spec
Sebastian Redl3cc97262009-05-31 11:47:27 +000011typedef int (*pf)() throw(int); // expected-error {{specifications are not allowed in typedefs}}
Sebastian Redl6a7330c2009-05-29 15:01:05 +000012
13// Some more:
14// Function returning function with spec
15void (*h())() throw(int);
16// Ultimate parser thrill: function with spec returning function with spec and
17// taking pointer to function with spec.
18// The actual function throws int, the return type double, the argument float.
19void (*i() throw(int))(void (*)() throw(float)) throw(double);
20// Pointer to pointer to function taking function with spec
21void (**k)(void pfa() throw(int)); // no-error
22// Pointer to pointer to function with spec
23void (**j)() throw(int); // expected-error {{not allowed beyond a single}}
24// Pointer to function returning pointer to pointer to function with spec
25void (**(*h())())() throw(int); // expected-error {{not allowed beyond a single}}
Sebastian Redlef65f062009-05-29 18:02:33 +000026
27struct Incomplete;
28
29// Exception spec must not have incomplete types, or pointers to them, except
30// void.
31void ic1() throw(void); // expected-error {{incomplete type 'void' is not allowed in exception specification}}
32void ic2() throw(Incomplete); // expected-error {{incomplete type 'struct Incomplete' is not allowed in exception specification}}
33void ic3() throw(void*);
34void ic4() throw(Incomplete*); // expected-error {{pointer to incomplete type 'struct Incomplete' is not allowed in exception specification}}
35void ic5() throw(Incomplete&); // expected-error {{reference to incomplete type 'struct Incomplete' is not allowed in exception specification}}
Sebastian Redl4994d2d2009-07-04 11:39:00 +000036
37// Redeclarations
38typedef int INT;
39void r1() throw(int);
40void r1() throw(int);
41
42void r2() throw(int);
43void r2() throw(INT);
44
45// throw-any spec and no spec at all are semantically equivalent
46void r3();
47void r3() throw(...);
48
49void r4() throw(int, float);
50void r4() throw(float, int);
51
52void r5() throw(int); // expected-note {{previous declaration}}
53void r5(); // expected-error {{exception specification in declaration does not match}}
54
55void r6() throw(...); // expected-note {{previous declaration}}
56void r6() throw(int); // expected-error {{exception specification in declaration does not match}}
57
58void r7() throw(int); // expected-note {{previous declaration}}
59void r7() throw(float); // expected-error {{exception specification in declaration does not match}}
60
61// Top-level const doesn't matter.
62void r8() throw(int);
63void r8() throw(const int);
Sebastian Redl23c7d062009-07-07 20:29:57 +000064
65struct A
66{
67};
68
69struct B1 : A
70{
71};
72
73struct B2 : A
74{
75};
76
77struct D : B1, B2
78{
79};
80
Sebastian Redl726212f2009-07-18 14:32:15 +000081struct P : private A
82{
83};
84
Sebastian Redl23c7d062009-07-07 20:29:57 +000085struct Base
86{
87 virtual void f1() throw();
88 virtual void f2();
89 virtual void f3() throw(...);
90 virtual void f4() throw(int, float);
91
92 virtual void f5() throw(int, float);
93 virtual void f6() throw(A);
94 virtual void f7() throw(A, int, float);
95 virtual void f8();
96
97 virtual void g1() throw(); // expected-note {{overridden virtual function is here}}
98 virtual void g2() throw(int); // expected-note {{overridden virtual function is here}}
99 virtual void g3() throw(A); // expected-note {{overridden virtual function is here}}
100 virtual void g4() throw(B1); // expected-note {{overridden virtual function is here}}
Sebastian Redl726212f2009-07-18 14:32:15 +0000101 virtual void g5() throw(A); // expected-note {{overridden virtual function is here}}
Sebastian Redl23c7d062009-07-07 20:29:57 +0000102};
103struct Derived : Base
104{
105 virtual void f1() throw();
106 virtual void f2() throw(...);
107 virtual void f3();
108 virtual void f4() throw(float, int);
109
110 virtual void f5() throw(float);
111 virtual void f6() throw(B1);
112 virtual void f7() throw(B1, B2, int);
113 virtual void f8() throw(B2, B2, int, float, char, double, bool);
114
115 virtual void g1() throw(int); // expected-error {{exception specification of overriding function is more lax}}
116 virtual void g2(); // expected-error {{exception specification of overriding function is more lax}}
117 virtual void g3() throw(D); // expected-error {{exception specification of overriding function is more lax}}
118 virtual void g4() throw(A); // expected-error {{exception specification of overriding function is more lax}}
Sebastian Redl726212f2009-07-18 14:32:15 +0000119 virtual void g5() throw(P); // expected-error {{exception specification of overriding function is more lax}}
Sebastian Redl23c7d062009-07-07 20:29:57 +0000120};
Sebastian Redle74b32a2009-08-27 19:07:16 +0000121
122// Some functions to play with below.
123void s1() throw();
124void s2() throw(int);
125void s3() throw(A);
126void s4() throw(B1);
127void s5() throw(D);
128void s6();
129void s7() throw(int, float);
130void (*s8())() throw(B1); // s8 returns a pointer to function with spec
131void s9(void (*)() throw(B1)); // s9 takes pointer to function with spec
132
133void fnptrs()
134{
135 // Assignment and initialization of function pointers.
136 void (*t1)() throw() = &s1; // valid
Sebastian Redl2c7588f2009-10-10 12:04:10 +0000137 t1 = &s2; // expected-error {{not superset}} expected-error {{incompatible type}}
138 t1 = &s3; // expected-error {{not superset}} expected-error {{incompatible type}}
139 void (&t2)() throw() = s2; // expected-error {{not superset}}
Sebastian Redle74b32a2009-08-27 19:07:16 +0000140 void (*t3)() throw(int) = &s2; // valid
141 void (*t4)() throw(A) = &s1; // valid
142 t4 = &s3; // valid
143 t4 = &s4; // valid
Sebastian Redl2c7588f2009-10-10 12:04:10 +0000144 t4 = &s5; // expected-error {{not superset}} expected-error {{incompatible type}}
Sebastian Redle74b32a2009-08-27 19:07:16 +0000145 void (*t5)() = &s1; // valid
146 t5 = &s2; // valid
147 t5 = &s6; // valid
148 t5 = &s7; // valid
Sebastian Redl2c7588f2009-10-10 12:04:10 +0000149 t1 = t3; // expected-error {{not superset}} expected-error {{incompatible type}}
Sebastian Redle74b32a2009-08-27 19:07:16 +0000150 t3 = t1; // valid
151 void (*t6)() throw(B1);
Sebastian Redl2c7588f2009-10-10 12:04:10 +0000152 t6 = t4; // expected-error {{not superset}} expected-error {{incompatible type}}
Sebastian Redle74b32a2009-08-27 19:07:16 +0000153 t4 = t6; // valid
154 t5 = t1; // valid
Sebastian Redl2c7588f2009-10-10 12:04:10 +0000155 t1 = t5; // expected-error {{not superset}} expected-error {{incompatible type}}
Sebastian Redle74b32a2009-08-27 19:07:16 +0000156
157 // return types and arguments must match exactly, no inheritance allowed
158 void (*(*t7)())() throw(B1) = &s8; // valid
159 void (*(*t8)())() throw(A) = &s8; // invalid
160 void (*(*t9)())() throw(D) = &s8; // invalid
161 void (*t10)(void (*)() throw(B1)) = &s9; // valid expected-warning{{disambiguated}}
162 void (*t11)(void (*)() throw(A)) = &s9; // invalid expected-warning{{disambiguated}}
163 void (*t12)(void (*)() throw(D)) = &s9; // invalid expected-warning{{disambiguated}}
164}