xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.eh/catch2.C (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 // Build don't link:
2 // Origin: Mike Danylchuk <miked@mpath.com>
3 
4 typedef char TCHAR;
5 
main()6 int main()
7 {
8   try {}
9   catch( TCHAR* Err ) {}
10 }
11 
12