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: bf2c8feafbe5cd9a3aa469633275057ad0ad57fa (plain)
1
2
3
4
5
6
7
8
9
10
// cs0117.cs: `int' does not contain a definition for `E'
// Line: 7

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