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

cs0019-20.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d58bdbd7e57d1308654ad5c0a5036cc514039bd2 (plain)
1
2
3
4
5
6
7
// CS0019: Operator `-' cannot be applied to operands of type `ulong' and `sbyte'
// Line: 6

class S
{
	const ulong u = (ulong)0 - (sbyte)1;
}