[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-expression-bodied-03.cs
blobfdde90c141fa1acea303f307193cdceeae4fa954
1 using System;
3 class X
5 int v;
7 public int Prop {
8 get => 1;
9 set => v = value;
12 public event Action A {
13 add => v = 1;
14 remove => v = 2;
17 public static void Main ()