mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
6 lines
157 B
Plaintext
Vendored
6 lines
157 B
Plaintext
Vendored
// "Create parameter 'value'" "true"
|
|
// DISABLE-ERRORS
|
|
interface Tr {
|
|
fun foo(value: String, b: String) = ""
|
|
fun bar(value: String) = foo(value, b)
|
|
} |