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

cs0019-14.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cca6407202440a4139d46f95be3ba3c81bdb8e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0019.cs: Operator `%' cannot be applied to operands of type `E' and `int'
// Line : 10

enum E: byte {
	Min
}

class T {
	static void Main () {
		E error = E.Min % 2;
	}
}