blob: cbc197ddc797a33f4158de9e8ba76743f7aa8ab6 [file] [log] [blame]
Douglas Gregor44b43212008-12-11 16:49:14 +00001// RUN: clang -fsyntax-only -verify %s
Douglas Gregor44b43212008-12-11 16:49:14 +00002namespace Ns {
3 int f(); // expected-note{{previous declaration is here}}
Douglas Gregor074149e2009-01-05 19:45:36 +00004
5 enum E {
6 Enumerator
7 };
Douglas Gregor44b43212008-12-11 16:49:14 +00008}
9namespace Ns {
10 double f(); // expected-error{{functions that differ only in their return type cannot be overloaded}}
Douglas Gregor074149e2009-01-05 19:45:36 +000011
12 int x = Enumerator;
Douglas Gregor44b43212008-12-11 16:49:14 +000013}
14
15namespace Ns2 {
16 float f();
17}
18
Douglas Gregor074149e2009-01-05 19:45:36 +000019int y = Ns::Enumerator;
20
Douglas Gregor44b43212008-12-11 16:49:14 +000021namespace Ns2 {
22 float f(int); // expected-note{{previous declaration is here}}
23}
24
25namespace Ns2 {
26 double f(int); // expected-error{{functions that differ only in their return type cannot be overloaded}}
27}
28
29namespace N {
30 int& f1();
31}
32
33namespace N {
34 struct f1 {
35 static int member;
Douglas Gregor518fda12009-01-13 05:10:00 +000036
37 typedef int type;
38
39 void foo(type);
Douglas Gregor44b43212008-12-11 16:49:14 +000040 };
41
42 void test_f1() {
43 int &i1 = f1();
44 }
45}
46
Douglas Gregor518fda12009-01-13 05:10:00 +000047void N::f1::foo(int) { }
48
Douglas Gregor44b43212008-12-11 16:49:14 +000049namespace N {
Douglas Gregor518fda12009-01-13 05:10:00 +000050 float& f1(int x) {
51 N::f1::type& i1 = x;
52 // FIXME: currently fails f1::type& i2 = x;
53 }
Douglas Gregor44b43212008-12-11 16:49:14 +000054
55 struct f2 {
56 static int member;
57 };
58 void f2();
59}
60
61int i1 = N::f1::member;
62typedef struct N::f1 type1;
63int i2 = N::f2::member;
64typedef struct N::f2 type2;
65
66void test_f1(int i) {
67 int &v1 = N::f1();
68 float &v2 = N::f1(i);
Chris Lattnera67865c2009-01-05 00:59:08 +000069 int v3 = ::i1;
Douglas Gregor1a49af92009-01-06 05:10:23 +000070 int v4 = N::f1::member;
Douglas Gregor44b43212008-12-11 16:49:14 +000071}
Chris Lattnera67865c2009-01-05 00:59:08 +000072
Chris Lattner83cf05a2009-01-05 01:42:04 +000073typedef int f2_type;
74namespace a {
75 typedef int f2_type(int, int);
76
77 void test_f2() {
78 ::f2_type(1, 2); // expected-error {{function-style cast to a builtin type can only take one argument}}
79 }
80}
81
Douglas Gregorbc468ba2009-01-07 21:36:02 +000082// PR clang/3291
83namespace a {
84 namespace a { // A1
85 namespace a { // A2
86 int i;
87 }
88 }
89}
Chris Lattner83cf05a2009-01-05 01:42:04 +000090
Douglas Gregorbc468ba2009-01-07 21:36:02 +000091void test_a() {
92 a::a::i = 3; // expected-error{{no member named 'i'}}
93 a::a::a::i = 4;
94}
95
Chris Lattner83cf05a2009-01-05 01:42:04 +000096