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

15 lines
311 B
D

/*
TEST_OUTPUT:
---
fail_compilation/safe_gshared.d(13): Error: accessing `__gshared` data `x` is not allowed in a `@safe` function
fail_compilation/safe_gshared.d(14): Error: accessing `__gshared` data `x` is not allowed in a `@safe` function
---
*/
__gshared int x;
@safe int f()
{
x++;
return x;
}