ec4cbfef59
Implementation for PSI only
14 lines
248 B
Kotlin
Vendored
14 lines
248 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun testCommasAndWhitespaces() {
|
|
fun bar(i: Int, s: String, x: Any) {}
|
|
|
|
<!UNREACHABLE_CODE!>bar(<!> 1 , todo() , <!UNREACHABLE_CODE!>"" )<!>
|
|
}
|
|
|
|
fun todo(): Nothing = throw Exception()
|
|
|
|
|
|
|