Closed
Description
Compiler version
3.2.1
Minimized code
case class Wrapper[A](value: A)
enum Color:
case Red, Green
def test_wrong(x: Wrapper[Color]): Option[Wrapper[Color.Red.type]] =
x match
case x: Wrapper[Color.Red.type] => Some(x)
case _ => None
Output
No warnings
Expectation
Unchecked warnings.
Notes
This is rereporting #16451, which we reverted the fix for in #18303.