summaryrefslogtreecommitdiff
path: root/test/files/pos/t9111-inliner-workaround/Test_1.scala
blob: 1a00fff8330b1a86f89f09777a5f6dad3ff3907e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
object Test extends App {
  println(new A_1.Inner())

  // Accessing foo or Deeper triggers the error of SI-9111.
  // However, when not referring to those definitions, compilation should
  // succeed, also if the inliner is enabled.

  // println(i.foo(null))
  // new i.Deeper()
}