// FIXME this is currently invalid, but seems like it should be OK// { dg-options -std=c++0x }structA{A(){}};template<classT>constexprboolignore(T&&){returntrue;}static_assert(ignore(10),"Error");// OKAs;static_assert(ignore(s),"Error");// Currently an error