On 4/18/2025 12:21 AM, Ogion wrote: > Isn’t `ref` essentially a non-null pointer? It's supposed to be. But you can write: ```d int* p = null; ref r = *p; ``` and you get a null ref.