language: C99 strict (gcc-4.7.2)
date: 411 days 5 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
extern int x, a[];
 
int main()
{
    x=*a; 
    return 0;
}
 
int a[] = { 0, 2}; /* completes the type */
int x = 10;