[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0619-6.cs
blob38d612fc8b49647d0f35c4b89d52bfdf4fea2747
1 // CS0619: `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;