Mercurial > hg > CbC > CbC_gcc
view gcc/testsuite/gcc.dg/diag-aka-2.c @ 158:494b0b89df80 default tip
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 25 May 2020 18:13:55 +0900 |
parents | 84e7813d76e9 |
children |
line wrap: on
line source
/* Verify that the "aka" descriptions for typedefs are correctly quoted (PR 62170). */ typedef struct s1 t1; int foo(t1 *); /* { dg-message "expected 't1 \\*' {aka 'struct s1 \\*'} but argument is of type 't2 \\*' {aka 'struct s2 \\*'}" } */ int bar() { typedef struct s2 {int i;} t2; t2 pos; return foo(&pos); /* { dg-error "incompatible pointer type" } */ }