<@UE382L5NX> I’ve seen that as well. Making one of...
# getting-started
s
@dG I’ve seen that as well. Making one of the functions into a block body fixes it, for some reason.
a
really? example?
I tried it, but no change.
Copy code
fun foo(first : Int = 4): Int = 2
fun foo(first : String = ""): Int = 1
->
Copy code
fun foo(first: Int = 4): Int {
    return 2
}
fun foo(first: String = ""): Int = 1
d
yeah no change here either