template <const int &> struct Foo {}; Foo<7> f; int main() {}
Standard input is empty
prog.cpp:4:6: error: ‘7’ is not a valid template argument for type ‘const int&’ because it is not an lvalue prog.cpp:4:9: error: invalid type in declaration before ‘;’ token
Standard output is empty