summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1519.cs
blob: 7209425d5b83bb41b6269747d0a15f0a760cf770 (plain)
1
2
3
4
5
6
7
// CS1519: Unexpected symbol `unchecked' in class, struct, or interface member declaration
// Line: 6

class C
{   
	unchecked const decimal d = 79m;
}