[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0266-7.cs
blob94af817f53ced9af44921c7d7988f4d7a60483d1
1 // CS0266: Cannot implicitly convert type `long' to `int'. An explicit conversion exists (are you missing a cast?)
2 // Line : 6
4 class X {
5 const uint a = 2;
6 const int b = -a;