Reenable a bunch of disabled iOS Mono SDKs test suites (#19301)
[mono-project.git] / mcs / errors / cs0117-3.cs
blob63e2027bcffb162f14583c6b06192ec789f67298
1 // CS0117: `Color' does not contain a definition for `Transparent'
2 // Line:
4 using System;
6 struct Color
10 static class ExtensionMethods
12 public static Color Transparent (this Color c)
14 return new Color ();
18 class MainClass
20 public static void Main ()
22 var c = Color.Transparent ();