1 /* PR c/91815 */
2 /* { dg-do compile } */
3
4 int f (void)
5 {
6 extern int t;
7 extern float v;
8
9 return (v > 0.0f);
10 }
11
12 typedef float t;
13
14 t v = 4.5f;