Remove redundant file from Java build
[mono.git] / mcs / errors / cs0023-9.cs
1 // cs0023: The `-' operator cannot be applied to operand of type `ulong'\r
2 // Line : 6\r
3 \r
4 class X {\r
5     const ulong a = 2;\r
6     const int b = -a;\r
7 }\r
8 \r
9 \r
10 \r