Skip to content

Commit 2e46d55

Browse files
committed
Put back private modifier in test
1 parent 1f92d31 commit 2e46d55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/run/t704.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
trait D {
22
private val x = "xxxx should appear twice"
3-
object xxxx { Console.println(x) }
3+
private object xxxx { Console.println(x) }
44
def get_xxxx: AnyRef = xxxx
55

66
private val z = "zzzz should appear twice"
7-
lazy val zzzz = new ZZZZ
7+
private lazy val zzzz = new ZZZZ
88
class ZZZZ { Console.println(z) }
99
def get_zzzz: AnyRef = zzzz
1010
}

0 commit comments

Comments
 (0)