Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0031-3.cs
1 // CS0031: Constant value `-9' cannot be converted to a `uint'
2 // Line: 9
3
4 public class Test
5 {
6         public static void Main()
7         {
8                 uint b = -9;
9         }
10 }