849b8acbf8
Just in tests that changed after deprecation
14 lines
315 B
Kotlin
Vendored
14 lines
315 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
import kotlin.platform.*
|
|
|
|
<!ILLEGAL_PLATFORM_NAME!>@platformName("")<!>
|
|
fun foo(a: Any) {}
|
|
|
|
<!ILLEGAL_PLATFORM_NAME!>@platformName(".")<!>
|
|
fun foo() {}
|
|
|
|
<!ILLEGAL_PLATFORM_NAME!>@platformName("/")<!>
|
|
fun fooSlash() {}
|
|
|
|
<!ILLEGAL_PLATFORM_NAME!>@platformName("<")<!>
|
|
fun fooLT() {} |