Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0023-9.cs
1 // CS0023: The `-' operator cannot be applied to operand of type `ulong'
2 // Line : 6
3
4 class X {
5     const ulong a = 2;
6     const int b = -a;
7 }
8
9
10