12 lines
175 B
C#
Raw Normal View History

// CS0429: Unreachable expression code detected
// Line: 9
// Compiler options: -warn:4 -warnaserror
class Main
{
public void Method (int i)
{
var x = true ? 1 : i;
}
}