blob: 3ac90b5c0c089bff4911cbfbd448508445a0c047 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail6497.d(12): Error: cannot take address of local `n` in `@safe` function `main`
fail_compilation/fail6497.d(12): Error: cannot take address of local `n` in `@safe` function `main`
---
*/
void main() @safe
{
int n;
auto b = &(0 ? n : n);
}