[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0612-3.cs
blob8fe9df9f090623853293a9ac232cb95d2f908d20
1 // CS0612: `A.Value' is obsolete
2 // Line: 13
3 // Compiler options: -warnaserror
5 class A {
6 [System.Obsolete ("")]
7 int Value {
8 set {
12 public A () {
13 Value = 4;