]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test21255.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test21255.d
CommitLineData
5fee5ec3
IB
1module test21255;
2
3void decodeA()(int i) { }
4void decodeB()(string s) { }
5
6alias decode = decodeA;
7alias decode = decodeB;
8
9void foo(alias A)() { A(1); A("hello"); }
10
11void main() { foo!decode; }