Use DW_TAG_module for Ada
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920812-1.c
blob7b3c8b0fb43a658444a794e2092ba6d13cd29520
1 /* { dg-additional-options "-std=gnu89" } */
2 typedef int t;
3 f(t y){switch(y){case 1:return 1;}return 0;}
4 main(){if(f((t)1)!=1)abort();exit(0);}