2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x
|
2009-10-29 00:49:46 +08:00
|
|
|
|
|
|
|
struct S {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
int mem(int);
|
|
|
|
};
|
|
|
|
|
|
|
|
int foo(int S::* ps, S *s)
|
|
|
|
{
|
|
|
|
return (s->*ps)(1); // expected-error {{called object type 'int' is not a function or function pointer}}
|
|
|
|
}
|
|
|
|
|
2010-10-31 03:52:22 +08:00
|
|
|
struct S2 {
|
|
|
|
int bitfield : 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}}
|
2010-11-02 02:49:26 +08:00
|
|
|
|
|
|
|
struct S3 {
|
|
|
|
void m();
|
|
|
|
};
|
|
|
|
|
|
|
|
void f3(S3* p, void (S3::*m)()) {
|
2011-01-06 14:29:28 +08:00
|
|
|
p->*m; // expected-error {{a bound member function may only be called}}
|
|
|
|
(void)(p->*m); // expected-error {{a bound member function may only be called}}
|
|
|
|
(void)(void*)(p->*m); // expected-error {{a bound member function may only be called}}
|
|
|
|
(void)reinterpret_cast<void*>(p->*m); // expected-error {{a bound member function may only be called}}
|
|
|
|
if (p->*m) {} // expected-error {{a bound member function may only be called}}
|
2011-04-27 04:42:42 +08:00
|
|
|
if (!(p->*m)) {} // expected-error {{a bound member function may only be called}}
|
2011-03-24 03:44:36 +08:00
|
|
|
if (p->m) {}; // expected-error {{a bound member function may only be called}}
|
2011-04-27 04:42:42 +08:00
|
|
|
if (!p->m) {}; // expected-error {{a bound member function may only be called}}
|
2010-11-02 02:49:26 +08:00
|
|
|
}
|