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

13 lines
356 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail6497.d(12): Error: taking the address of stack-allocated local variable `n` is not allowed in a `@safe` function
fail_compilation/fail6497.d(12): Error: taking the address of stack-allocated local variable `n` is not allowed in a `@safe` function
---
*/
void main() @safe
{
int n;
auto b = &(0 ? n : n);
}