Merged changes in master libmonoruntime into PR.
[mono.git] / mcs / errors / cs0520.cs
1 // CS0520: The predefined type `System.Object' is not declared correctly
2 // Line: 7
3 // Compiler options: -nostdlib
4
5 namespace System
6 {
7         struct Object 
8         {
9         }
10 }