// "Create member function 'A.plus'" "true" class A(val n: T) { fun plus(i: Int, s: String): A = throw Exception() operator fun plus(t: T): A { TODO("Not yet implemented") } } fun test() { val a: A = A(1) + 2 }