blob: 9a0e9cdd791cadeb9d0bba4a11b8c9f09480aacc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Test to make sure we do not ICE on this invalid program.
struct A {};
template<typename T> void A::foo(T) {} // { dg-error "" }
void bar()
{
A::foo(1); // { dg-error "not a member" }
}
|