summaryrefslogtreecommitdiff
path: root/mcs/tests/test-710.cs
blob: 0fe59f33f537c7c42a57657fed1f52f874a437ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -warnaserror -warnaserror-:612,219

using System;

[Obsolete]
class Z
{
}

class C
{
	public static void Main ()
	{
		Z z = new Z ();
	}
}