blob: 1b1770a89f8506971486b2e2bcc140bc39f8a1b3 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor3218c4b2009-01-09 22:42:13 +00002
3// Test the use of elaborated-type-specifiers to inject the names of
4// structs (or classes or unions) into an outer scope as described in
5// C++ [basic.scope.pdecl]p5.
6typedef struct S1 {
7 union {
8 struct S2 *x;
9 struct S3 *y;
10 };
11} S1;
12
13bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
14 if (s1->x == s2) return true;
15 if (s1->y == s3) return true;
16 return false;
17}
18
19namespace NS {
20 class X {
21 public:
Kaelyn Uhrain8d3607b2012-06-06 20:54:51 +000022 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}}
Douglas Gregor3218c4b2009-01-09 22:42:13 +000023 };
24
Douglas Gregora41a8c52010-04-22 00:20:18 +000025 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}}
Douglas Gregor3218c4b2009-01-09 22:42:13 +000026}
27
28void test_X_elab(NS::X x) {
29 struct S4 *s4 = 0;
John McCall7c2342d2010-03-10 11:27:22 +000030 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'}}
Douglas Gregor3218c4b2009-01-09 22:42:13 +000031}
32
33namespace NS {
34 S4 *get_S4();
35}
36
37void test_S5_scope() {
Kaelyn Uhrain8d3607b2012-06-06 20:54:51 +000038 S4 *s4; // expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}}
Douglas Gregor3218c4b2009-01-09 22:42:13 +000039}
40
Douglas Gregor3218c4b2009-01-09 22:42:13 +000041int test_funcparam_scope(struct S5 * s5) {
42 struct S5 { int y; } *s5_2 = 0;
Douglas Gregor0c6db942009-05-04 06:07:12 +000043 if (s5 == s5_2) return 1; // expected-error {{comparison of distinct pointer types ('struct S5 *' and 'struct S5 *')}}
Douglas Gregor3218c4b2009-01-09 22:42:13 +000044 return 0;
45}