blob: a9280549900ed86a41ece63148ffa389ea6de885 [file] [log] [blame]
// { dg-options "-w" }
template<typename T> void foo(T); // { dg-error "note" }
void bar()
{
int i;
int A[i][i];
foo(A); // { dg-error "no matching function for call to" }
}