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}}
|