On Wednesday, 8 April 2020 at 19:29:17 UTC, Anonymouse wrote:
```
__gshared int gshared = 42;

void foo(ref int i = gshared) @safe
{
    ++i;
}
void main()
{
    assert(gshared == 42);
    foo();
    assert(gshared == 43);
}
```

Dude, you just broke `@safe`! Lol!

Reply via email to