Skip to content

Commit b3aa3fe

Browse files
committed
Fix test
1 parent 6d2e9b3 commit b3aa3fe

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

tests/run-with-compiler/i3823-c.check

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2-
val z: Int = 2
3-
()
2+
type T = Int
3+
{
4+
val z: T = 2
5+
()
6+
}
47
}

tests/run-with-compiler/i3823-c.scala

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ object Test {
55
def f[T](x: Expr[T])(implicit t: Type[T]) = '{
66
val z = ~x
77
}
8-
// FIXME uncomment next line
9-
// println(f('(2))(Type.IntTag).show)
10-
println("{\n val z: Int = 2\n ()\n}") // TODO remove line
8+
println(f('(2))(Type.IntTag).show)
119
}
12-
}
10+
}
11+

0 commit comments

Comments
 (0)