mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
178 B
D
9 lines
178 B
D
// https://issues.dlang.org/show_bug.cgi?id=23578
|
|
struct S(alias a)
|
|
{
|
|
}
|
|
|
|
static if (is(S!int == S!av, alias av))
|
|
static assert(is(av == int));
|
|
else
|
|
static assert(false);
|