summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/ice19762.d
blob: a484327426b94804933daef11851fb872695fb43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// EXTRA_FILES: imports/b19762.d imports/c19762.d
// PERMUTE_ARGS: -g

/*
TEST_OUTPUT:
---
fail_compilation/ice19762.d(13): Error: struct `ice19762.X` had semantic errors when compiling
---
*/

module ice19762;

struct X
{
	import imports.b19762 : Baz;
	Err err;
}