11 lines
156 B
C#
Raw Permalink Normal View History

class X {
public static void Main ()
{
int h = 1, o = 2;
if (h+4 < o >> 3){
}
}
}