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

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

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