foo.cc:
-----------------------------------------------
#include <iostream>

struct Foo { Foo(); };

Foo::Foo() try
{ throw;
} catch(...) {
    std::cerr << "Goodbye\n";
}

int DoYouSeeThis() { return 0; }
---------------------------------------------------
etags foo.cc
cat TAGS
/home/twilloch/tst2-etags.cc,36
struct Foo 3,21
Foo::Foo(Foo5,45