summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-20.cs
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;
}