modernc.org/ccgo/v3@v3.16.14/lib/testdata/gcc-9.1.0/gcc/testsuite/gcc.c-torture/execute/20000717-1.c (about)

     1  typedef struct trio { int a, b, c; } trio;
     2  
     3  int
     4  bar (int i, trio t)
     5  {
     6    if (t.a == t.b || t.a == t.c)
     7      abort ();
     8  }
     9  
    10  int
    11  foo (trio t, int i)
    12  {
    13    return bar (i, t);
    14  }
    15  
    16  main ()
    17  {
    18    trio t = { 1, 2, 3 };
    19  
    20    foo (t, 4);
    21    exit (0);
    22  }