[w32file] Remove dead code
[mono.git] / mcs / errors / cs1971.cs
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
3
4 class A
5 {
6         public void Foo (int i)
7         {
8         }
9 }
10
11 class B : A
12 {
13         public void Test ()
14         {
15                 dynamic d = null;
16                 var r = base.Foo (d);
17         }
18 }