1 struct S {
2 };
3 
4 extern S i[];
5 
6 void g (S*);
7 
8 template <typename T>
f()9 void f () {
10   g (&i[2]);
11 }
12 
13