Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs8208.cs
1 // CS8208: The type `dynamic' pattern matching is not allowed
2 // Line: 9
3
4 static class Program
5 {
6         public static void Main ()
7         {
8                 object o = null;            
9                 if (o is dynamic res) {
10                 }
11         }
12 }