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

cs1522.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad7212193014b25d679c8959c384ff6bf000ccc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs1522.cs: Empty switch block
// Line: 9
// Compiler options: -warnaserror

class E
{
   public static void Method (int i)
   {
       switch (i) {}
   }
}