Defer null check to resolver
[mono.git] / mcs / tests / dtest-025.cs
1 class C
2 {
3         public static int Main ()
4         {
5                 int? x = null;
6                 dynamic y = 50;
7                 int v =  x.GetValueOrDefault(y);
8                 if (v != 50)
9                         return 1;
10                 
11                 return 0;
12         }
13 }