[mcs] Add expression bodied syntax for accessors. Fixes #54991
[mono.git] / mcs / errors / cs1536.cs
index f1305beabead48b0282eb7b71353b22b5ad9f9b0..1d4f27754f4f6305f41154972cdd8a5c03525086 100644 (file)
@@ -1,13 +1,10 @@
-// CS1536: Invalid parameter type 'void'
-// Line: 7
+// CS1536: Invalid parameter type `void'
+// Line: 8
+
 using System;
 
 class X
 {
        void Test (void a)
        { }
-
-       static void Main ()
-       {
-       }
 }