]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/compilable/issue15795.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / issue15795.d
1 module issue15795;
2
3 template Foo(T : int) {}
4 template Bar(T) {}
5 alias Bar = Foo;
6
7 alias bi = Bar!int;
8 alias fi = Foo!int;
9 static assert(__traits(isSame, bi, fi));