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

int
main ()
{
  return blarg ();
}

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