]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.old-deja/g++.pt/explicit41.C
call.c (struct conversion_info): Rename 'from_type' to 'from'.
[thirdparty/gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / explicit41.C
CommitLineData
6481daa9 1// { dg-do assemble }
a6475d98 2template <int I>
3d2f6864 3void f(int i); // { dg-message "void f" }
a6475d98
JM
4
5void g()
6{
7 int i;
6481daa9 8 f<i>(7); // { dg-error "" } template argument 1 is invalid.
a6475d98 9}