2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / template12.C
blob686db48f50a5370e9f5b23e7bc5838cfd4e6d891
1 // { dg-do assemble  }
2 // GROUPS passed templates
3 inline void foo (const int &x) {}
5 template <class type>
6 inline void foo (const type &x) {x.eat_this_and_die();}
8 int main (int argc, char **argv) {foo (argc);}