2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / cs0019-20.cs
1 // CS0019: Operator `-' cannot be applied to operands of type `ulong and `sbyte'
2 // Line: 6
3
4 class S
5 {
6         const ulong u = (ulong)0 - (sbyte)1;
7 }