// "Replace 'switch' with 'if'" "true-preview" class Test { void test() { enum P { s, l; } P p = null; if (p == P.s || p == null) { } } }