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

test-572.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 550b00e143054e6950695c2241294e3a9b4ea80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
struct Color
{
	public static Color From (int i)
	{
		return new Color ();
	}
	
	public int ToArgb ()
	{
		return 0;
	}
}

class C
{
		public Color Color {
			get {
				return new Color();
			}
		}
		
		void ResetCustomColors ()
		{
			int default_color = Color.From(0).ToArgb ();
		}
		
		public static void Main ()
		{
		}
}