Skip to content

Commit 1a348e9

Browse files
committed
Blacklist puzzle test for FromTasty
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 < } ```
1 parent 463a8e4 commit 1a348e9

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
# Closure type miss match
22
eff-dependent.scala
3+
4+
# It seems we still harmonize types in fromTasty. Not sure where this happens
5+
puzzle.scala

0 commit comments

Comments
 (0)