aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/implicit1.C
blob: 399d2329758386a1ae71f56caefbdff803b25b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// test for implicit declaration
// Special g++ Options: -w

int
main ()
{
  return blarg ();
}

extern "C" int
blarg (...)
{
  return 0;
}