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

cs0266-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f13790996e51efce50fadde2b9ca4d41d68e683 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
// Line : 6

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