[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs8116.cs
1 // CS8116: The nullable type `byte?' pattern matching is not allowed. Consider using underlying type `byte'
2 // Line: 11
3
4 using System;
5
6 class C
7 {
8         public static void Main ()
9         {
10                 object o2 = null;
11                 bool r2 = o2 is Nullable<byte> t3;
12         }
13 }