blob: 60ee10df7f6a65c489232501004ef7623a68cd2e [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Douglas Gregor86f19402008-12-20 23:49:58 +00002
3class X{
4public:
5 enum E {Enumerator};
6 int f();
7 static int mem;
8 static float g();
9};
10
11void 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 Gregor76f7d282009-01-16 03:02:29 +000016 int i3 = x.Enumerator;
17 int i4 = xp->Enumerator;
Douglas Gregor86f19402008-12-20 23:49:58 +000018 x.mem = 1;
19 xp->mem = 2;
20 float f1 = x.g();
21 float f2 = xp->g();
22}
Douglas Gregor214f31a2009-03-27 06:00:30 +000023
24struct A {
25 int f0;
26};
27struct B {
28 A *f0();
29};
30int f0(B *b) {
31 return b->f0->f0; // expected-error{{member reference base type 'struct A *(void)' is not a structure or union}} \
32 // expected-note{{perhaps you meant to call this function}}
33}