]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/test10375.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / test10375.d
CommitLineData
b4c522fa 1// REQUIRED_ARGS: -o-
5fee5ec3 2// EXTRA_FILES: imports/test10375a.d
b4c522fa
IB
3import imports.test10375a;
4
5void packIt(Pack)(Pack p){ } //3
6
7void main()
8{
9 alias p = packIt!(int);
10 p(2); // OK <- NG
11 packIt(2); // OK <- NG
12 packIt!(int)(2); // OK <- NG
13}