We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f92d31 commit 2e46d55Copy full SHA for 2e46d55
tests/run/t704.scala
@@ -1,10 +1,10 @@
1
trait D {
2
private val x = "xxxx should appear twice"
3
- object xxxx { Console.println(x) }
+ private object xxxx { Console.println(x) }
4
def get_xxxx: AnyRef = xxxx
5
6
private val z = "zzzz should appear twice"
7
- lazy val zzzz = new ZZZZ
+ private lazy val zzzz = new ZZZZ
8
class ZZZZ { Console.println(z) }
9
def get_zzzz: AnyRef = zzzz
10
}
0 commit comments