aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/20040920-1.c
blob: a38ff8889304ad0fb506ad1cc979e831c2aa294d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
int bob;
struct a
{
  int foo;
};
int main(void)
{
  struct a bar;
  bob(5); /* { dg-error "called object 'bob' is not a function" } */
  bar.foo(); /* { dg-error "called object 'bar.foo' is not a function" } */
}