Files
linux-packaging-mono/mcs/errors/cs1519.cs

8 lines
152 B
C#
Raw Normal View History

// CS1519: Unexpected symbol `unchecked' in class, struct, or interface member declaration
// Line: 6
class C
{
unchecked const decimal d = 79m;
}