Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
083128f6b13dfa4fc615a838c49b516d901b1ac0
/
.
/
test
/
SemaCXX
/
ptrtomember-badcall.cpp
blob: 42b8e3b6e0c93be0b9beed403c7ac15bf8b7573e [
file
] [
log
] [
blame
]
// RUN: clang-cc -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}}
}