Skip to content

Commit e055f5b

Browse files
committed
Fix neg test
1 parent 25433d1 commit e055f5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/run/toplevel-mixed/B_1.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
class x(val s: String)
33

4-
object y {
4+
object yy {
55
def foo = 3
66
}
77

tests/run/toplevel-mixed/Test_2.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ object Test extends App {
44
assert((new x("abc")).s == "abc")
55

66
assert(y("abc") == 3)
7-
assert(y.foo == 3)
7+
assert(yy.foo == 3)
88

99
val x2: X2 = "abc"
1010
assert(X2.bar == "hi")

0 commit comments

Comments
 (0)