* TabControl.cs: Change SetTab so it adds the tabpage to the list
[mono.git] / mcs / errors / gcs0030-2.cs
1 // CS0030: Cannot convert type `X' to `S'\r
2 // Line: 10\r
3 \r
4 struct S {\r
5 }\r
6 \r
7 class X {\r
8         static void Main ()\r
9         {\r
10                 S s = (S)default(X);\r
11         }\r
12 }\r