Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2 | |
| 3 | class X{ |
| 4 | public: |
| 5 | enum E {Enumerator}; |
| 6 | int f(); |
| 7 | static int mem; |
| 8 | static float g(); |
| 9 | }; |
| 10 | |
| 11 | void test(X* xp, X x) { |
| 12 | int i1 = x.f(); |
| 13 | int i2 = xp->f(); |
| 14 | x.E; // expected-error{{cannot refer to type member 'E' with '.'}} |
| 15 | xp->E; // expected-error{{cannot refer to type member 'E' with '->'}} |
Douglas Gregor | 76f7d28 | 2009-01-16 03:02:29 +0000 | [diff] [blame] | 16 | int i3 = x.Enumerator; |
| 17 | int i4 = xp->Enumerator; |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 18 | x.mem = 1; |
| 19 | xp->mem = 2; |
| 20 | float f1 = x.g(); |
| 21 | float f2 = xp->g(); |
| 22 | } |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 23 | |
| 24 | struct A { |
| 25 | int f0; |
| 26 | }; |
| 27 | struct B { |
| 28 | A *f0(); |
| 29 | }; |
| 30 | int f0(B *b) { |
Douglas Gregor | 3f0b5fd | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 31 | return b->f0->f0; // expected-error{{perhaps you meant to call this function}} |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 32 | } |
Douglas Gregor | 8d1c9ae | 2009-10-17 22:37:54 +0000 | [diff] [blame] | 33 | |
| 34 | int i; |
| 35 | |
| 36 | namespace C { |
| 37 | int i; |
| 38 | } |
| 39 | |
| 40 | void test2(X *xp) { |
| 41 | xp->::i = 7; // expected-error{{qualified member access refers to a member in the global namespace}} |
| 42 | xp->C::i = 7; // expected-error{{qualified member access refers to a member in namespace 'C'}} |
| 43 | } |
John McCall | b1b4256 | 2009-12-01 22:28:41 +0000 | [diff] [blame] | 44 | |
| 45 | |
| 46 | namespace test3 { |
| 47 | struct NamespaceDecl; |
| 48 | |
| 49 | struct NamedDecl { |
| 50 | void *getIdentifier() const; |
| 51 | }; |
| 52 | |
| 53 | struct NamespaceDecl : NamedDecl { |
| 54 | bool isAnonymousNamespace() const { |
| 55 | return !getIdentifier(); |
| 56 | } |
| 57 | }; |
| 58 | } |