Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0023-9.cs
blob358aaf812ddd5f34c8eaf0b77c6be535d82e03b5
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;