summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0134-2.cs
blob: 8a0492f5d1e97e7353652f6d78d0a923c2758737 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0134: A constant `o' of reference type `object' can only be initialized with null
// Line: 8

public class C
{
	public static void Main ()
	{
		const object o = 1; 
	}
}