aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/interface2b.cc
blob: 9109949b890ed0064396073f28044e32d320bc8d (plain)
1
2
3
4
5
6
7
8
9
// PR c++/26195
extern void foo1();
extern void foo2();

int main()
{
  foo1();
  foo2();
}