]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/g++.dg/parse/error55.C
C/C++: fix quoting of "aka" typedef information (PR 62170)
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / parse / error55.C
CommitLineData
7a181134
PC
1// PR c++/60845
2
3class A { };
4typedef A B;
5void foo (B &a) {
ce95abc4 6 a.x(); // { dg-error "'B' {aka 'class A'} has no member named 'x'" }
7a181134 7}