blob: 33f46371eb7faf207d074e2079b64091db0b536d [file] [log] [blame]
// { dg-do compile { target c++11 } }
// { dg-options "-Wall -Wextra" }
template<class T>
void f(T t, void* = 0) // { dg-warning "unused parameter" }
{
}
template<class T>
auto g(T t) -> decltype(f(t))
{
f(t);
}
int main()
{
g(0);
}