// "Create function 'minus'" "true" class A(val n: T) { fun minus(n: Int): A = throw Exception() } fun test() { val a: A = -A(1) }