blob: 42b8e3b6e0c93be0b9beed403c7ac15bf8b7573e [file] [log] [blame]
Fariborz Jahanian5de24502009-10-28 16:49:46 +00001// RUN: clang-cc -fsyntax-only -verify %s -std=c++0x
2
3struct S {
4 int i;
5
6 int mem(int);
7};
8
9int foo(int S::* ps, S *s)
10{
11 return (s->*ps)(1); // expected-error {{called object type 'int' is not a function or function pointer}}
12}
13