[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / tests / gtest-exmethod-38.cs
blobdf403625af6294f91728f60b939d86a9849322b8
1 using System;
3 namespace Repro2
5 struct Color
7 public static Color Black = new Color (0);
8 public static Color White = new Color (255);
9 public static Color Transparent = new Color (-1);
11 public int ID;
13 public Color (int id)
15 this.ID = id;
19 static class ExtensionMethods
21 public static Color Transparent (this Color c)
23 return Color.White;
27 class MainClass
29 public static int Main ()
31 var c = Color.Black.Transparent ();
32 return 0;