Swapped pointers to the other side for types to prevent ambiguity, i.e. *int instead of int*
This commit is contained in:
@@ -4,7 +4,7 @@ fun retVoid() {
|
||||
println("Woooo")
|
||||
}
|
||||
|
||||
fun withParams(a:int, b:char*) {
|
||||
fun withParams(a:int, b:*char) {
|
||||
println(a)
|
||||
println(b)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user