blob: 989d277cd00107c99c7d815a9322c76f6b30ea12 [file] [log] [blame]
// PR c++/57891
// { dg-do compile { target c++11 } }
template<unsigned int> struct A {};
A<-1> a; // { dg-error "narrowing conversion" }
template<signed char> struct B {};
B<1000> b; // { dg-error "narrowing conversion" }