fun testFn in { println "Hi!" if compare 1 == 1 { println "1 == 1" # This won't work because this is indented } } fun testFn in { println "Hi!" if compare 1 == 1 { println "1 == 1" # This works now that the indentation is removed } }