blob: 5fac79728579a818e845d4b38cd20f1ea7bb1a86 [file] [log] [blame]
Douglas Gregor9ea416e2011-01-19 16:41:58 +00001// RUN: %clang_cc1 -fsyntax-only -verify -pedantic %s
Sebastian Redlab963c62008-11-08 15:40:37 +00002class C;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +00003class C {
4public:
5protected:
6 typedef int A,B;
7 static int sf(), u;
8
9 struct S {};
Douglas Gregora131d0f2010-07-13 06:24:26 +000010 enum {}; // expected-warning{{declaration does not declare anything}}
Douglas Gregorcb821d02010-04-08 21:33:23 +000011 int; // expected-warning {{declaration does not declare anything}}
Argyrios Kyrtzidis3a9fdb42008-06-28 08:10:48 +000012 int : 1, : 2;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000013
14public:
Richard Smitheab9d6f2012-07-23 05:45:25 +000015 void m0() {}; // ok, one extra ';' is permitted
16 void m1() {}
17 ; // ok, one extra ';' is permitted
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000018 void m() {
19 int l = 2;
Richard Smitheab9d6f2012-07-23 05:45:25 +000020 };; // expected-warning{{extra ';' after member function definition}}
Douglas Gregor9ea416e2011-01-19 16:41:58 +000021
Richard Trieu4b0e6f12012-05-16 19:04:59 +000022 template<typename T> void mt(T) { }
Richard Smitheab9d6f2012-07-23 05:45:25 +000023 ;
Douglas Gregor9ea416e2011-01-19 16:41:58 +000024 ; // expected-warning{{extra ';' inside a class}}
25
Sebastian Redlab963c62008-11-08 15:40:37 +000026 virtual int vf() const volatile = 0;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000027
28private:
29 int x,f(),y,g();
Sebastian Redlab963c62008-11-08 15:40:37 +000030 inline int h();
31 static const int sci = 10;
Sebastian Redl669d5d72008-11-14 23:42:31 +000032 mutable int mi;
Argyrios Kyrtzidis4cc18a42008-06-24 22:12:16 +000033};
Sebastian Redlab963c62008-11-08 15:40:37 +000034void glo()
35{
36 struct local {};
37}
Chris Lattnerbc8d5642008-12-18 01:12:00 +000038
39// PR3177
40typedef union {
41 __extension__ union {
42 int a;
43 float b;
44 } y;
45} bug3177;
46
David Blaikie13f8daf2011-10-13 06:08:43 +000047// check that we don't consume the token after the access specifier
48// when it's not a colon
49class D {
50public // expected-error{{expected ':'}}
51 int i;
52};
53
54// consume the token after the access specifier if it's a semicolon
55// that was meant to be a colon
56class E {
57public; // expected-error{{expected ':'}}
58 int i;
59};
60
Richard Trieu65ba9482012-01-21 02:59:18 +000061class F {
62 int F1 { return 1; } // expected-error{{function definition does not declare parameters}}
63 void F2 {} // expected-error{{function definition does not declare parameters}}
64 typedef int F3() { return 0; } // expected-error{{function definition declared 'typedef'}}
65 typedef void F4() {} // expected-error{{function definition declared 'typedef'}}
66};
67
Richard Smith412e0cc2012-03-27 00:56:56 +000068namespace ctor_error {
69 class Foo {};
70 // By [class.qual]p2, this is a constructor declaration.
71 Foo::Foo (F) = F(); // expected-error{{does not match any declaration in 'ctor_error::Foo'}}
72
73 class Ctor { // expected-note{{not complete until the closing '}'}}
74 Ctor(f)(int); // ok
75 Ctor(g(int)); // ok
76 Ctor(x[5]); // expected-error{{incomplete type}}
77
78 Ctor(UnknownType *); // expected-error{{unknown type name 'UnknownType'}}
Richard Smith52f10d52012-03-29 01:46:00 +000079 void operator+(UnknownType*); // expected-error{{unknown type name 'UnknownType'}}
Richard Smith412e0cc2012-03-27 00:56:56 +000080 };
81
82 Ctor::Ctor (x) = { 0 }; // \
83 // expected-error{{qualified reference to 'Ctor' is a constructor name}}
84
Richard Smith412e0cc2012-03-27 00:56:56 +000085 Ctor::Ctor(UnknownType *) {} // \
Richard Smith52f10d52012-03-29 01:46:00 +000086 // expected-error{{unknown type name 'UnknownType'}}
87 void Ctor::operator+(UnknownType*) {} // \
88 // expected-error{{unknown type name 'UnknownType'}}
Richard Smith412e0cc2012-03-27 00:56:56 +000089}
90
Richard Smithc7f81162013-03-18 22:52:47 +000091namespace nns_decl {
92 struct A {
93 struct B;
94 };
95 namespace N {
96 union C;
97 }
98 struct A::B; // expected-error {{forward declaration of struct cannot have a nested name specifier}}
99 union N::C; // expected-error {{forward declaration of union cannot have a nested name specifier}}
100}
101
Richard Smith69e48262012-09-06 01:37:56 +0000102// PR13775: Don't assert here.
103namespace PR13775 {
104 class bar
105 {
106 public:
107 void foo ();
108 void baz ();
109 };
110 void bar::foo ()
111 {
112 baz x(); // expected-error 3{{}}
113 }
114}
115
David Blaikie13f8daf2011-10-13 06:08:43 +0000116// PR11109 must appear at the end of the source file
117class pr11109r3 { // expected-note{{to match this '{'}}
118 public // expected-error{{expected ':'}} expected-error{{expected '}'}} expected-error{{expected ';' after class}}