"disable_omit_fp" can now be included in MONO_DEBUG
[mono-project.git] / mcs / errors / cs1971.cs
blobc92e58b7104893cd30e6260db5e61d759b383b75
1 // CS1971: The base call to method `Foo' cannot be dynamically dispatched. Consider casting the dynamic arguments or eliminating the base access
2 // Line: 16
4 class A
6 public void Foo (int i)
11 class B : A
13 public void Test ()
15 dynamic d = null;
16 var r = base.Foo (d);