update readme (#21797)
[mono-project.git] / mcs / tests / test-expression-bodied-04.cs
blob815eabc3c1aed3a26f82387e588bcc250a24444b
1 // Introduced in C#7
3 class VV
5 VV () => Test ();
7 ~VV () => Test ();
9 void Test ()
13 public static void Main ()