1 /* Verify that the "aka" descriptions for typedefs are correctly
6 int foo(t1
*); /* { dg-message "expected 't1 \\*' {aka 'struct s1 \\*'} but argument is of type 't2 \\*' {aka 'struct s2 \\*'}" } */
9 typedef struct s2
{int i
;} t2
;
11 return foo(&pos
); /* { dg-error "incompatible pointer type" } */