summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0520.cs
blob: 5880dbcb07b25549b62ee0a8e00fe5e7c26bba6d (plain)
1
2
3
4
5
6
7
8
9
10
// CS0520: The predefined type `System.Object' is not declared correctly
// Line: 7
// Compiler options: -nostdlib

namespace System
{
	struct Object 
	{
	}
}