2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0619-39.cs
bloba74fb3d141bffcabbc780c79aa5ab0a6751a5a2a
1 // cs0619-39.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 int Prop {
12 get {
13 return ob;