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