[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-debug-10.cs
blobbabec3ab4b01096ba59d04b393d4339cdf31515c
1 class C
3 public static void Main ()
5 Prop = 3;
8 static int Prop
10 get {
11 return 4;
14 set {
18 static int PropAuto
20 get;
21 set;