]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.dg/template/typedef4.C
call.c (struct conversion_info): Rename 'from_type' to 'from'.
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / template / typedef4.C
CommitLineData
709f9dcf
VR
1// PR c++/27572
2// { dg-do compile }
3
b89c561c 4template<typedef> void foo(); // { dg-error "no type|typedef declaration|template" }
709f9dcf
VR
5
6void bar()
7{
8 foo<int>(); // { dg-error "matching" }
9}