2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-584.cs
blob7a88a0d952a9d23e2bc16f7f834a43383a60511a
1 public class Style
3 public static Style CurrentStyle
5 get { return null; }
6 set { }
9 private static bool LoadCurrentStyle ()
11 return ((CurrentStyle = Load ()) != null);
14 public static Style Load ()
16 return null;
19 public static int Main ()
21 return LoadCurrentStyle () ? 1 : 0;