dmd/compiler/test/fail_compilation/systemvariables_deprecation.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

28 lines
738 B
D

/*
REQUIRED_ARGS: -de
TEST_OUTPUT:
---
fail_compilation/systemvariables_deprecation.d(16): Deprecation: `@safe` function `main` calling `middle`
fail_compilation/systemvariables_deprecation.d(21): which calls `systemvariables_deprecation.inferred`
fail_compilation/systemvariables_deprecation.d(27): which wouldn't be `@safe` because of:
fail_compilation/systemvariables_deprecation.d(27): access `@system` variable `x0`
---
*/
// test deprecation messages before -preview=systemVariables becomes default
void main() @safe
{
middle(); // nested deprecation
}
auto middle()
{
return inferred(); // no deprecation, inferredC is not explicit `@safe`
}
auto inferred()
{
@system int* x0;
x0 = null;
}