mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
16 lines
620 B
D
16 lines
620 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice8795.d-mixin-14(14): Error: found `End of File` when expecting `(`
|
|
fail_compilation/ice8795.d-mixin-14(14): Error: expression expected, not `End of File`
|
|
fail_compilation/ice8795.d-mixin-14(14): Error: missing closing `)` after `switch (__error`
|
|
fail_compilation/ice8795.d-mixin-14(14): Error: found `End of File` instead of statement
|
|
fail_compilation/ice8795.d-mixin-15(15): Error: { } expected following `interface` declaration
|
|
fail_compilation/ice8795.d-mixin-15(15): Error: anonymous interfaces not allowed
|
|
---
|
|
*/
|
|
void main()
|
|
{
|
|
mixin("switch");
|
|
mixin("interface;");
|
|
}
|