[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1981.cs
blob6507a09c49b5121b8ceee0b9e92515bb7fa46528
1 // CS1981: Using `is' to test compatibility with `dynamic' is identical to testing compatibility with `object'
2 // Line: 10
3 // Compiler options: -warnaserror
5 class C
7 public static void Main ()
9 object o = null;
10 bool b = o is dynamic;