On 25/10/2022 3:09 PM, Paul Backus wrote:
> For example, the `@trusted` function below is memory safe when using the
> current compiler release, but will become unsafe when compiled with DMD
> 2.101:
>
> ```d
> @trusted int[] example()
> {
> scope example = [1, 2, 3];
> return example;
> }
> ```
Does this also apply to @safe?