mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
14 lines
305 B
D
14 lines
305 B
D
// REQUIRED_ARGS: -o-
|
|
// EXTRA_FILES: imports/a15667.d
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/imports/a15667.d(16): Error: basic type expected, not `;`
|
|
fail_compilation/imports/a15667.d(19): Error: declaration expected following attribute, not end of file
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
import imports.a15667;
|
|
}
|