Skip to content
Snippets Groups Projects
duplicate_field.i 116 B
Newer Older
/* run.config*
 EXIT: 1
   STDOPT:
*/

struct test{
   int x;
   int x;
};

int f(struct test s){
   return s.x;
};