2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-20.cs
blobd58bdbd7e57d1308654ad5c0a5036cc514039bd2
1 // CS0019: Operator `-' cannot be applied to operands of type `ulong' and `sbyte'
2 // Line: 6
4 class S
6 const ulong u = (ulong)0 - (sbyte)1;