summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0031-8.cs
blob: 68c7c8002343af27710466f84ba1598bcb90f803 (plain)
1
2
3
4
5
6
7
// CS0031: Constant value `-97' cannot be converted to a `uint'
// Line: 9

public class Test
{
	const uint b = -'a';
}