class C {
  constructor(x: Int) /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

}

typealias CA = C
object Host {
  private constructor() /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

  class Nested {
    constructor(x: Int) /* primary */ {
      super/*Any*/()
      /* <init>() */

    }

  }

}

typealias NA = Nested
val test1: Function1<Int, C>
  field = C::<init>
  get

val test2: Function1<Int, Nested>
  field = Nested::<init>
  get
