]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/fail809.d
libstdc++: Make atomic<T*>::wait() const [PR102994]
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail809.d
CommitLineData
5fee5ec3
IB
1// REQUIRED_ARGS: -preview=dip1000
2/*
3TEST_OUTPUT:
4---
5fail_compilation/fail809.d(11): Error: scope variable `dg_` may not be returned
6---
7*/
8int delegate() test(lazy int dg)
9{
10 int delegate() dg_ = &dg;
11 return dg_;
12}