E1024# The error type of this function is never used. Erroneous example# fn greet() -> Unit! { println("Hello, world!") } Suggestion# Remove the error type: fn greet() -> Unit { println("Hello, world!") }