Update dependencies from https://github.com/dotnet/arcade build 20190729.1 (#15881)
[mono-project.git] / mcs / tests / test-null-operator-15.cs
blob35f16ae6c264f75b272914b2e6c471773825e711
1 using System.Linq;
2 using System.Collections.Generic;
4 class MM
6 public IEnumerable<int> myEnumerable { get; set; }
9 class Test
11 public static void Main ()
13 MM myobject = null;
14 (myobject?.myEnumerable?.Any ()).GetValueOrDefault (false);