[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-autoproperty-14.cs
blob8b250de1df37ea90242d4fcca03e19a5bd7ea2a9
1 public struct S
3 public int A { get; set;}
5 public S (int a)
7 this.A = a;
10 public static void Main ()