]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/diag6699.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag6699.d
CommitLineData
b4c522fa
IB
1/*
2TEST_OUTPUT:
3---
5fee5ec3 4fail_compilation/diag6699.d(8): Error: no property `x` for type `int`
b4c522fa
IB
5---
6*/
7alias int b6699;
8alias b6699.x b6699a;
9
10/*
11TEST_OUTPUT:
12---
13fail_compilation/diag6699.d(18): Error: undefined identifier `junk1`
14fail_compilation/diag6699.d(18): Error: undefined identifier `junk2`
15fail_compilation/diag6699.d(19): Error: undefined identifier `junk3`
16---
17*/
18class X : junk1, junk2 {}
19interface X2 : junk3 {}