mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
257 B
D
10 lines
257 B
D
module issue20915;
|
|
|
|
// prior to the PR adding this test case,
|
|
// locally defined version and debug idents were included.
|
|
version = illegal;
|
|
debug = illegal;
|
|
|
|
alias Seq(T...) = T;
|
|
|
|
static assert (__traits(allMembers, issue20915) == Seq!("object", "Seq"));
|