Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0229-4.cs
1 // CS0229: Ambiguity between `TestLib.FOO()' and `TestLib.FOO'
2 // Line: 9
3 // Compiler options: -r:CS0229-4-lib.dll
4
5 public class Test
6 {
7    public static void Main()
8    {
9       System.Console.WriteLine(TestLib.FOO);
10    }
11 }