"UnscopedRef on struct instance method"

struct IntContainer {
	public int A;
	public int B;
	public int C;

	[UnscopedRef] public ref int ARef => ref A; // Won't compile without UnscopedRef
}


Code snippet taken from "Complete C# Quick Reference - C# 11".