## Minimized code ```Scala import Tuple.Union object Foo val x = summon[Union[(Foo.type, 1)] =:= (Foo.type | 1)] // doesn't compile val y = summon[Union[(Foo.type, 1, String)] =:= (Foo.type | 1 | String)] // compiles ``` ## Output ```scala val x = summon[Union[(Foo.type, 1)] =:= (Foo.type | 1)] // doesn't compile ^ Cannot prove that Tuple.Union[(Foo.type, (1 : Int))] =:= Foo.type | (1 : Int). ``` ## Expectation `Tuple.Union` should work for tuples containing any types