mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
201 B
D
13 lines
201 B
D
/*
|
|
EXTRA_FILES: imports/a13311.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/imports/a13311.d(8): Error: undefined identifier `PieceTree`
|
|
---
|
|
*/
|
|
module ice13311;
|
|
|
|
struct TextPiece
|
|
{
|
|
import imports.a13311;
|
|
}
|