mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
9 lines
163 B
D
9 lines
163 B
D
module issue15795;
|
|
|
|
template Foo(T : int) {}
|
|
template Bar(T) {}
|
|
alias Bar = Foo;
|
|
|
|
alias bi = Bar!int;
|
|
alias fi = Foo!int;
|
|
static assert(__traits(isSame, bi, fi));
|