Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0023-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fa20cd2a0d366ebc2c20d1afcdf89cd810b21af8 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0023: The `-' operator cannot be applied to operand of type `ulong'
// Line : 6

class X {
    const ulong a = 2;
    const int b = -a;
}