(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
pr27495.C
// Test to make sure we do not ICE on this invalid program.

struct A
{
    template<int> void foo();
    void bar() { this.A::foo<0>(); }	// { dg-error "" }
};