summaryrefslogtreecommitdiff
path: root/test/files/jvm5/genericNest.scala
blob: c1b0210117600267e4494d3b0611f0f9fecfc735 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/** found in genericNest.jar, compiled from OuterTParams.java */
import nestpkg._;

// bug #695
object ForceParse extends OuterTParams[AnyRef] {
  // Force import of HarderToParse<A>.InnerClass,
  // which has confusing method signature.
  var field: InnerClass = null
}

object Test extends Application {
  ForceParse
}