rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/typeinfo1.C

16 lines
142 B
C

// { dg-do assemble }
#include <typeinfo>
struct S {
S (const char*);
};
void f(S s);
void f(std::type_info);
void g()
{
f("abc");
}