// IS_APPLICABLE: false fun test() { class Test { fun plus(a: Int, b: Int): Test = Test() } val test = Test() test.plus(1, 2) }