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: fea66c34a18de421a6a729def6d75bbc0bc9d714 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0078.cs: 'l' is easily confused with digit '1'.
// Line: 12
// Compiler options: -warnaserror -warn:4

using System;

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