// "Create member function 'A.plus'" "true" class A(val n: T) { operator fun unaryPlus(): A = throw Exception() } fun test() { val a: A = A(1) + 2 }