]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/b16598.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / b16598.d
CommitLineData
b4c522fa
IB
1struct S
2{
3 this(int) {}
4 ~this() {}
5}
6
7int g(S a, S b)
8{
9 return 1;
10}
11
12void main()
13{
14 true ? g(S(), S(1)) : {}();
15}