blob: b9689ec508801da76b4fbd2c1d5e6c7b11c7bb60 [file] [log] [blame]
// PR c++/23056
// { dg-do compile }
template <bool T> struct S { virtual ~S(); };
void foo ()
{
static_cast<bool>("Foo");
}
S<true> a;