blob: cf11800a7754945e38a1ab0a9c753f3df837e45b [file]
fun foo(a: String) {
val a = a + "b"
println("test")
}
fun main() {
foo("main")
}