mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
216 B
D
11 lines
216 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail4269f.d(9): Error: `alias X16 = X16;` cannot alias itself, use a qualified name to create an overload set
|
|
---
|
|
*/
|
|
|
|
static if(is(typeof(X16))) {}
|
|
alias X16 X16;
|
|
|
|
void main() {}
|