mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
252 B
D
14 lines
252 B
D
/*
|
|
EXTRA_FILES: imports/imp20709.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice20709.d(10): Error: module `imp20709` import `Point` not found
|
|
---
|
|
*/
|
|
module ice20709;
|
|
|
|
import imports.imp20709 : Point;
|
|
|
|
immutable Point aPoint = somePoint;
|
|
|
|
Point somePoint() {}
|