]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/compilable/pr9374.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / compilable / pr9374.d
CommitLineData
5fee5ec3
IB
1// REQUIRED_ARGS: -preview=dip1000
2
3// https://github.com/dlang/dmd/pull/9374
4
5struct OnlyResult
6{
7 this(return scope ref int v2);
8
9 void* data;
10}
11
12OnlyResult foo(return scope ref int v2);
13
14OnlyResult only(int y)
15{
16 if (y)
17 return OnlyResult(y);
18 return foo(y);
19}