11 lines
160 B
C#
Raw Normal View History

// CS0219: The constant `C' is never used
// Line: 9
// Compiler options: -warn:3 -warnaserror
class C
{
public static void Main ()
{
const int C = 1;
}
}