Compile: ```csharp ref struct R { ref int _f = 1; public R() { } } ``` Expected: ``` error CS8172: Cannot initialize a by-reference variable with a value ``` Actual: Code compiles and generated code assigns the value `1` to the `null` location in `_f`. See related https://github.com/dotnet/roslyn/issues/64720.