blob: a43f9e30a888f27fd717a985035902049c91b8b7 [file] [log] [blame]
/* Verify that the "aka" descriptions for typedefs are correctly
quoted (PR 62170). */
/* Exercise %H and %I. */
typedef struct s1 t1;
typedef struct s2 {int i;} t2;
int foo(t1 *);
void test_1 () {
t2 pos;
foo (&pos); // { dg-error "cannot convert 't2\\*' {aka 's2\\*'} to 't1\\*' {aka 's1\\*'} for argument '1' to 'int foo\\(t1\\*\\)'" }
}
/* Exercise %T. */
typedef struct s3
{
void m3 ();
} t3;
void test_2 (const s3 *ptr)
{
ptr->m3 (); // { dg-error "passing 'const s3' as 'this' argument discards qualifiers" }
}
void test_3 (const t3 *ptr)
{
ptr->m3 (); // { dg-error "passing 'const t3' {aka 'const s3'} as 'this' argument discards qualifiers" }
}