Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
fail_compilation
/
fix22108.d
blob: 149bebae0ea629452f956bba6a64597233df7f92 [
file
] [
log
] [
blame
]
/* REQUIRED_ARGS: -preview=dip1000
TEST_OUTPUT:
---
fail_compilation/fix22108.d(12): Error: scope variable `p` may not be returned
---
*/
// https://issues.dlang.org/show_bug.cgi?id=22108
@safe
ref
int
test
(
ref
scope
return
int
*
p
)
{
return
*
p
;
}