[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs8208.cs
blobca6cd1dd5cefec34e5b5d346079bae6cd9c594fe
1 // CS8208: The type `dynamic' pattern matching is not allowed
2 // Line: 9
4 static class Program
6 public static void Main ()
8 object o = null;
9 if (o is dynamic res) {