blob: 89c8e80dd579624f1f07ddc25ea3dd6d800c8f7e [file] [log] [blame]
// Build don't link:
#include <typeinfo>
struct S {
S (const char*);
};
void f(S s);
void f(std::type_info);
void g()
{
f("abc");
}