File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
tests/run-macros/tasty-tree-map Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ object Test {
42
42
println(identityMaped({ val x : Int | Any = 60 ; x }))
43
43
println(identityMaped({ def f (x : => Int ): Int = x; f(61 ) }))
44
44
println(identityMaped({ type T [X ] = X ; val x : T [Int ] = 62 ; x }))
45
- println(identityMaped({ type T [X ] = X match { case Int => String ; case String => Int }; val x : T [String ] = 63 ; x }))
45
+ println(identityMaped({ type T [X ] = X match { case Int => String case String => Int }; val x : T [String ] = 63 ; x }))
46
46
println(identityMaped((Nil : List [Int ]) match { case _ : List [t] => 64 }))
47
47
println(identityMaped({ object F { type T = Int }; val x : F .T = 65 ; x }))
48
48
println(identityMaped({ val x : Foo { type T = Int } = new Foo { type T = Int ; def y : Int = 66 }; x.y }))
You can’t perform that action at this time.
0 commit comments