summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0266-7.cs
blob: 94af817f53ced9af44921c7d7988f4d7a60483d1 (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;
}