Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1585.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f9ae84eb1f2c053ffbcf4fe84372ad2985c858e (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1585: Modifier `static' should appear before type
// Line:  7
using System; 
 
class t 
{ 
        public void static Main (string[] args) 
        { 
                Console.WriteLine("Hello"); 
        } 
}