Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-expression-bodied-03.cs
1 using System;
2
3 class X
4 {
5         int v;
6
7         public int Prop {
8                 get => 1;
9                 set => v = value;
10         }
11
12         public event Action A {
13                 add => v = 1;
14                 remove => v = 2;
15         }
16
17         public static void Main ()
18         {               
19         }
20 }