[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0023-26.cs
blob3dbaeb3600bac2b406fa83f9e5e82a63601b7243
1 // CS0023: The `?' operator cannot be applied to operand of type `method group'
2 // Line: 14
4 class X
6 void Test ()
10 public static void Main ()
12 X x = null;
13 System.Action n = x?.Test;