Merge branch 'master' of http://github.com/mono/mono
[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