Sign in
llvm
/
clang
/
1571f048734190c5ed03d1a6083e579ec7b5801f
/
.
/
test
/
SemaCXX
/
ptrtomember-badcall.cpp
blob: fb774d85e3e4882ed21e2155066d4886787bbdfd [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s -std=c++0x
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}}
}