2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0619-40.cs
blobc049ffd9e204b5c08f323cae79ec741e89f1197f
1 // cs0619-40.cs: `C.ob' is obsolete: `ooo'
2 // Line: 13
4 using System;
6 class C
8 [Obsolete("ooo", true)]
9 const int ob = 4;
11 public void Test (int arg)
13 switch (arg) {
14 case ob: return;