package test object Host { private constructor() /* primary */ { super/*Any*/() /* () */ } inline fun foo(): String { return "OK" } } fun test(): String { return Host.foo() }