[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0023-22.cs
blobce5c0b29fdd45de89d2badf20d90fab888f06b8a
1 // CS0023: The `?' operator cannot be applied to operand of type `null'
2 // Line: 8
4 class C
6 static void Main ()
8 var res = null?[0];