1 // Compiler options: -warnaserror -warn:4 -nowarn:169
15 public Test() : this("layout", false)
20 public Test(string a
, bool writeToErrorStream
)
29 set { _name = value; }
34 public class DerivedTest
: Test
39 public DerivedTest(string a
) : base(a
, false)
44 public string Method ()
52 public static void Main () {}
56 class ObsoleteClass2
: ObsoleteClass
63 public static readonly double XSmall
= 0.6444444444444;
66 public readonly double X_Small
= XSmall
;
69 public static readonly double X_Small2
= XSmall
;
78 lock (typeof (ObsoleteClass4
)) {}
79 lock (typeof (ObsoleteClass2
)) {}