summaryrefslogtreecommitdiff
path: root/test/files/run/t9841.scala
blob: 2f7642ed03e4f336600019dd451809e867291b92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class Container {
  private case class Inner(s: String)
  private object Inner {
    val Empty = Inner("")
  }
  private val state = Inner.Empty
}

object Test extends App {
  new Container
}