view gcc/testsuite/gcc.dg/20040920-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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" } */
}