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

cs0136-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fa3b0a899456082390b9a83c9ccb3a3891603b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0136: 'y' has a different meaning later in the block
// Line: 8

class X
{
   static void y () { }
   static void Main () {
     y ();
     int y = 5;
   }
}