Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-584.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a88a0d952a9d23e2bc16f7f834a43383a60511a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
public class Style
{
	public static Style CurrentStyle
	{
		get { return null; }
		set { }
	}

	private static bool LoadCurrentStyle ()
	{
		return ((CurrentStyle = Load ()) != null);
	}

	public static Style Load ()
	{
		return null;
	}
	
	public static int Main ()
	{
		return LoadCurrentStyle () ? 1 : 0;
	}	
}