object Host {
  private constructor() /* primary */ {
    super/*Any*/()
    /* <init>() */

  }

  inline fun <reified T : Any?> objectMember(x: T) {
  }

}

inline fun <reified T : Any?> topLevel1(x: T) {
}

inline fun <reified T : Any?> topLevel2(x: List<T>) {
}

val test1: Function1<Int, Unit>
  field = ::topLevel1
  get

val test2: Function1<List<String>, Unit>
  field = ::topLevel2
  get

val test3: Function1<Int, Unit>
  field = ::objectMember
  get

