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