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

cs0103-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de59e4d8c90ca878f272986fe9fdfda3ad50be80 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0103cs: The name 'y' does not exist in the current context
// Line: 8

public class C
{
	public static void Main ()
	{
	    int x = y;
	    int y = 1;
	}
}