mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
344 B
D
11 lines
344 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice11969.d(9): Error: undefined identifier `index`
|
|
fail_compilation/ice11969.d(10): Error: undefined identifier `cond`
|
|
fail_compilation/ice11969.d(11): Error: undefined identifier `msg`
|
|
---
|
|
*/
|
|
void test1() { mixin ([index]); }
|
|
void test2() { mixin (assert(cond)); }
|
|
void test3() { mixin (assert(0, msg)); }
|