update readme (#21797)
[mono-project.git] / mcs / tests / test-decl-expr-02.cs
blob1d1c355e1a7046dbca07d194c785d44598cb3918
1 using System;
3 public class C
5 public static void Main ()
9 bool Test1 => int.TryParse ("1", out int x);
10 int Test2 => int.TryParse ("2", out int x) ? x : 0;