11 lines
150 B
C#
Raw Normal View History

// CS0642: Possible mistaken empty statement
// Line: 7
// Compiler options: -warnaserror -warn:3
class X{
static void Main ()
{
if (true);
}
}