I am wondering what it means to declare private[this]
in an object definition? It makes sense to me in a class definition, but in object?
as in:
object Test {
private[this] val t: Int = 5
}
what difference does it have compare to:
object Test {
private val t: Int = 5
}