summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0229-4.cs
blob: 65a761935112c2da8f7a16a0631c8a1a11bf2f13 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0229: Ambiguity between `TestLib.FOO()' and `TestLib.FOO'
// Line: 9
// Compiler options: -r:CS0229-4-lib.dll

public class Test
{
   public static void Main()
   {
      System.Console.WriteLine(TestLib.FOO);
   }
}