for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs0121-11.cs
blobae0740b65719ebc5811ce79b6ce6f99879eea4d4
1 // CS0121: The call is ambiguous between the following methods or properties: `IA.Foo()' and `IB.Foo()'
2 // Line: 27
4 interface IA
6 void Foo ();
9 interface IBB : IB
13 interface IB
15 int Foo ();
18 interface IC : IA, IBB
22 public class Program
24 static void Main ()
26 IC i = null;
27 i.Foo ();