You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running puzzle from Tasty it still harmonizes the types
in the old way.
Here's the diff:
```
~/workspace/dotty/tests/run> diff puzzle.decompiled puzzle.decompiled.out
4,5c4,5
< scala.Predef.println(if (false) 5.0 else 53.0)
< val x: scala.Double = if (false) 5.0 else 53.0
---
> scala.Predef.println(if (false) 5.0 else '5')
> val x: scala.AnyVal = if (false) 5.0 else '5'
11c11
< }
```
0 commit comments