Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git] / mcs / errors / cs1503-18.cs
bloba9e93375674d9590f9baa584da8e356a79d95188
1 // CS1503: Argument `#1' cannot convert `int?' expression to type `int'
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];