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

cs0078.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4561d861a73c6bcead913c5fac2181a53543daea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0078.cs: The `l' suffix is easily confused with the digit `1' (use `L' for clarity)
// Line: 12
// Compiler options: -warnaserror -warn:4

using System;

class ErrorCS0078 {
	public static void Main () {
		long a = 1l;
	}
}