fun test() { class Test { fun plus(fn: () -> Test): Test = fn() } val test = Test() test.plus { Test() } }