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

cs0117.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b942b47625cec3de11ee8cf5ad6325ba2a3524b (plain)
1
2
3
4
5
6
7
8
9
10
// cs0117: `int' does not contain a definition for 'E'.
// Line: 7

class T {
	public static int Main (string [] args )
	{
		int x = 1.E;
		return 0;
	}
}