public static class Simple {
    public fun <init>() = EmptyExpression
    var a: String = "text" + "other" + "text"

    var b: List<String> = listOf("A")

    public fun test(): Unit {
        System.out.println(5.0f / 2)
    }

}
