dmd/compiler/test/fail_compilation/ice12158.d
2022-07-09 18:53:07 +02:00

8 lines
169 B
D

/*
TEST_OUTPUT:
---
fail_compilation/ice12158.d(7): Error: module `object` import `nonexisting` not found
---
*/
import object : nonexisting;
auto x = nonexisting.init;