dmd/compiler/test/fail_compilation/test22227.d
Dennis 9b94878c85
Make safe error messages consistent (#20654)
Co-authored-by: Dennis Korpel <dennis@sarc.nl>
2025-01-08 13:46:38 +08:00

16 lines
408 B
D

/* REQUIRED_ARGS: -preview=dip1000
TEST_OUTPUT:
---
fail_compilation/test22227.d(12): Error: returning scope variable `foo` is not allowed in a `@safe` function
fail_compilation/test22227.d(14): Error: returning scope variable `foo` is not allowed in a `@safe` function
---
*/
int[] foo() @safe
{
if (scope foo = [1])
return foo;
while (scope foo = [1])
return foo;
return [];
}