view gcc/testsuite/g++.dg/diagnostic/aka3.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
line wrap: on
line source

/* Verify the "aka" descriptions for typedefs are correctly
   quoted and shown within labels.  */

/* { dg-options "-fdiagnostics-show-caret" } */

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\\*'}" }
  /* { dg-begin-multiline-output "" }
   foo (&pos);
        ^~~~
        |
        t2* {aka s2*}
     { dg-end-multiline-output "" } */
  /* { dg-begin-multiline-output "" }
 int foo(t1 *);
         ^~~~
     { dg-end-multiline-output "" } */
}