2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0612.cs
blob33144f917915b1740e9cd2f488554f07191cf4ed
1 // cs0612.cs: `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;