]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/typedef-var-1.c
Update copyright years.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / typedef-var-1.c
CommitLineData
522da4c2
EB
1/* PR c/91815 */
2/* { dg-do compile } */
3
4int f (void)
5{
6 extern int t;
7 extern float v;
8
9 return (v > 0.0f);
10}
11
12typedef float t;
13
14t v = 4.5f;