blob: b968ea6ad54410142e8bb9e425b0a9a9484b2c15 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregord57959a2009-03-27 23:10:48 +00002namespace N {
3 struct A {
4 typedef int type;
5 };
6
7 struct B {
8 };
9
10 struct C {
11 struct type { };
12 int type; // expected-note 2{{referenced member 'type' is declared here}}
13 };
14}
15
16int i;
17
18typename N::A::type *ip1 = &i;
Douglas Gregor3f093272009-10-13 21:16:44 +000019typename N::B::type *ip2 = &i; // expected-error{{no type named 'type' in 'struct N::B'}}
Douglas Gregord57959a2009-03-27 23:10:48 +000020typename N::C::type *ip3 = &i; // expected-error{{typename specifier refers to non-type member 'type'}}
21
22void test(double d) {
23 typename N::A::type f(typename N::A::type(a)); // expected-warning{{parentheses were disambiguated as a function declarator}}
24 int five = f(5);
25
26 using namespace N;
27 for (typename A::type i = 0; i < 10; ++i)
28 five += 1;
29
30 const typename N::A::type f2(d);
31}
32
33namespace N {
34 template<typename T>
35 struct X {
Douglas Gregor3f093272009-10-13 21:16:44 +000036 typedef typename T::type type; // expected-error {{no type named 'type' in 'struct N::B'}} \
37 // expected-error {{no type named 'type' in 'struct B'}} \
Douglas Gregord57959a2009-03-27 23:10:48 +000038 // FIXME: location info for error above isn't very good \
39 // expected-error 2{{typename specifier refers to non-type member 'type'}} \
40 // expected-error{{type 'int' cannot be used prior to '::' because it has no members}}
41 };
42}
43
44N::X<N::A>::type *ip4 = &i;
45N::X<N::B>::type *ip5 = &i; // expected-note{{in instantiation of template class 'struct N::X<struct N::B>' requested here}} \
Douglas Gregora786fdb2009-10-13 23:27:22 +000046// expected-error{{no type named 'type' in}}
Douglas Gregord57959a2009-03-27 23:10:48 +000047N::X<N::C>::type *ip6 = &i; // expected-note{{in instantiation of template class 'struct N::X<struct N::C>' requested here}} \
Douglas Gregora786fdb2009-10-13 23:27:22 +000048// expected-error{{no type named 'type' in}}
Douglas Gregord57959a2009-03-27 23:10:48 +000049
50N::X<int>::type fail1; // expected-note{{in instantiation of template class 'struct N::X<int>' requested here}} \
Douglas Gregora786fdb2009-10-13 23:27:22 +000051// expected-error{{no type named 'type' in}}
Douglas Gregord57959a2009-03-27 23:10:48 +000052
53template<typename T>
54struct Y {
55 typedef typename N::X<T>::type *type; // expected-note{{in instantiation of template class 'struct N::X<struct B>' requested here}} \
56 // expected-note{{in instantiation of template class 'struct N::X<struct C>' requested here}}
57};
58
59struct A {
60 typedef int type;
61};
62
63struct B {
64};
65
66struct C {
67 struct type { };
68 int type; // expected-note{{referenced member 'type' is declared here}}
69};
70
71::Y<A>::type ip7 = &i;
72::Y<B>::type ip8 = &i; // expected-note{{in instantiation of template class 'struct Y<struct B>' requested here}} \
Douglas Gregora786fdb2009-10-13 23:27:22 +000073// expected-error{{no type named 'type' in}}
Douglas Gregord57959a2009-03-27 23:10:48 +000074::Y<C>::type ip9 = &i; // expected-note{{in instantiation of template class 'struct Y<struct C>' requested here}} \
Douglas Gregora786fdb2009-10-13 23:27:22 +000075// expected-error{{no type named 'type' in}}