2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs0023-9.cs
blobfa20cd2a0d366ebc2c20d1afcdf89cd810b21af8
1 // cs0023: The `-' operator cannot be applied to operand of type `ulong'
2 // Line : 6
4 class X {
5 const ulong a = 2;
6 const int b = -a;