[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs0031-8.cs
1 // CS0031: Constant value `-97' cannot be converted to a `uint'
2 // Line: 9
3
4 public class Test
5 {
6         const uint b = -'a';
7 }