mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
207 B
D
13 lines
207 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail7859.d(9): Error: undefined identifier `NonExistent`
|
|
---
|
|
*/
|
|
template A(alias B) {}
|
|
|
|
mixin template C(alias B = cast(NonExistent)null) {
|
|
alias A!B D;
|
|
}
|
|
|
|
mixin C!();
|