rt_gccstream/gcc/testsuite/g++.dg/opt/pr23056.C

10 lines
139 B
C

// PR c++/23056
// { dg-do compile }
template <bool T> struct S { virtual ~S(); };
void foo ()
{
static_cast<bool>("Foo");
}
S<true> a;