blob: b5b79c8cbc46d69921e2a1ec8e217e1042a7cfb8 [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
struct S
{
int i;
};
template <class T>
void f ()
{
try {
} catch (S& s) {
s.i = 3;
}
}
template void f<int>();