OSDN Git Service

* g++.old-deja/g++.other/eh4.C: Fix typo.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / typeinfo1.C
1 // Build don't link:
2
3 #include <typeinfo>
4
5 struct S {
6   S (const char*);
7 };
8
9 void f(S s);
10 void f(std::type_info);
11
12 void g()
13 {
14   f("abc");
15 }