mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 06:00:13 +03:00
12 lines
222 B
D
12 lines
222 B
D
/*
|
|
EXTRA_FILES: imports/fail20637b.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail20637.d(12): Error: no property `foo` for type `imports.fail20637b.A`
|
|
---
|
|
*/
|
|
module fail20637;
|
|
|
|
import imports.fail20637b;
|
|
|
|
void main() { A.foo; }
|