blob: 821dbbb73dfc971a84d1585df492633c57c9ae79 [file] [log] [blame]
Chris Lattner7e9ee752002-05-23 20:58:45 +00001/* Make sure the frontend is correctly marking static stuff as internal! */
2
3int X;
4static int Y = 12;
5
6static void foo(int Z) {
7 Y = Z;
8}
9
10void *test() {
11 foo(12);
12 return &Y;
13}