(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0619-6.cs
blob821670b4824e9ce816fbcb3becc2a0abb6f5810d
1 // cs0619.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;