Fix indentation, spacing.
[mono-project.git] / mcs / errors / cs1503-18.cs
blob1c91dd8abffd7a05d97920f66c49ce430a2a6601
1 // CS1503: Argument `#1' cannot convert `int?' expression to type `System.Index'
2 // Line: 11
4 class X
6 public static void Main ()
8 string x = null;
9 string y = null;
11 var res = x?[y?.Length];