Similar to #7267 - `value` should have a "this code has no effect" diagnostic so vshaxe can gray it out. ```haxe import haxe.ds.Option; class Main { public static function main() { switch ((null:Option<Int>)) { case Some(value): case None: } } } ```