// PSI_ELEMENT: org.jetbrains.kotlin.psi.JetPrimaryConstructor // OPTIONS: usages // FIND_BY_REF // WITH_FILE_NAME package usages import library.* class X: A { constructor(n: Int): super(n) } class Y(): A(1) fun test() { val a: A = A() val aa = A(1) }