1 // PR77812
2 // struct-stat hack failure when first overload is a template
3 
4 enum f {};
5 
6 template <typename>
f()7 void f ()
8 {
9 }
10 enum f F;
11 
12 struct g {};
13 
14 template <typename>
g()15 void g ()
16 {
17 }
18 struct g G;
19