[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs8116.cs
blob02fa062789062b0d211b59275b4b1312ce4f0951
1 // CS8116: The nullable type `byte?' pattern matching is not allowed. Consider using underlying type `byte'
2 // Line: 11
4 using System;
6 class C
8 public static void Main ()
10 object o2 = null;
11 bool r2 = o2 is Nullable<byte> t3;