9 public static string Test1 (string a
, string b
) => a
+ "|" + b
;
10 void Test2 (int x
) => value = x
;
11 Func
<int> Test3 (int a
) => () => a
;
13 public static implicit operator string (C c
) => "op";
15 protected string Prop
=> f1
+ " " + f2
;
16 static Func
<string> Prop2
=> () => "n1";
18 public int this[int arg1
, int arg2
] => arg2
- arg1
;
23 if (Test1 ("1", "5") != "1|5")
30 if (Test3 (9) () != 9)
37 if (Prop
!= "f-1 f=2")
43 if (this [13, 20] != 7)