aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/instantiate5.cc
blob: fc86e0f83095497b126282f81b6f659abf8f8a7d (plain)
1
2
3
4
5
// this file is part of testcase instantiate5.C

template <class T> void foo() { }
inline int bar() { foo<void>(); return 1; }
static int i = bar();