mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
201 B
D
12 lines
201 B
D
/*
|
|
TEST_OUTPUT:
|
|
----
|
|
fail_compilation/test20549.d(12): Error: variable `test.__a_field_0` - variables cannot be of type `void`
|
|
----
|
|
*/
|
|
|
|
module test;
|
|
|
|
alias AliasSeq(T...) = T;
|
|
|
|
enum a = AliasSeq!test;
|