mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
17 lines
265 B
D
17 lines
265 B
D
// 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;
|
|
}
|