blob: fb774d85e3e4882ed21e2155066d4886787bbdfd [file] [log] [blame]
Shih-wei Liaof8fd82b2010-02-10 11:10:31 -08001// RUN: %clang_cc1 -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