mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
250 B
D
11 lines
250 B
D
/*
|
|
REQUIRED_ARGS: -Ifail_compilation/imports/
|
|
EXTRA_FILES: imports/import21508.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail21508_2.d(11): Error: import `fail21508_2.import21508` is used as a type
|
|
---
|
|
*/
|
|
import import21508;
|
|
|
|
class Other : import21508 { }
|