2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0619-6.cs
blob9272e236602d864ed071de74d23f9c355c6f133a
1 // cs0619-6.cs: `A._value' is obsolete: `Do not use it'
2 // Line: 9
4 class A {
5 [System.Obsolete("Do not use it", true)]
6 int _value;
8 public A () {
9 _value = 4;