Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0518.cs
1 // CS0518: The predefined type `System.Object' is not defined or imported
2 // Line: 0
3 // Compiler options: -nostdlib
4
5 class MainClass
6 {
7     public static void Main ()
8     {
9     }
10 }