Files
kotlin-fork/idea/testData/multiFileInspections/invalidBundleOrProperty/before/tooFewArguments.kt
T
2015-09-25 17:18:01 +03:00

7 lines
176 B
Kotlin
Vendored

fun test() {
K.message("foo.bar")
J.message("foo.bar")
K.message(key = "foo.bar", args = 1)
K.message("foo.bar2", *arrayOf(1, 2))
K.message2("foo.bar", 1)
}