Merge pull request #4040 from ntherning/disable-symbolicate-tests-on-windows
[mono.git] / mcs / errors / cs0568.cs
index b255929c659c2285e37fbdcf06913d80a21f8b07..3da6d663c1dbdc4bff996b41f023e4ce53852f60 100644 (file)
@@ -1,14 +1,9 @@
-// cs0568.cs: Structs cannot contain explicit parameterless constructors
-// Line: 5
-struct A {
-       int a;
-       A () { a = 1; }
-}
+// CS0568: Structs cannot contain explicit parameterless constructors
+// Line: 6
 
-class D {
-       static void Main ()
+struct S
+{
+       public S ()
        {
-               A [] a = new A [10];
-
        }
-}
+}
\ No newline at end of file