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

11 lines
163 B
C#
Raw Normal View History

// CS1576: The line number specified for #line directive is missing or invalid
// Line: 8
public struct S
{
static void Main()
{
#line "error"
}
}