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