mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Forbid underscore-only (_, __, ___, ...) names as callees and as types. If CHECK_TYPE directive is on, filter out UNDERSCORE_USAGE_WITHOUT_BACKTICKS messages.
7 lines
129 B
Kotlin
Vendored
7 lines
129 B
Kotlin
Vendored
object Host {
|
|
val `____` = { -> }
|
|
fun testFunTypeVal() {
|
|
<!UNDERSCORE_USAGE_WITHOUT_BACKTICKS!>____<!>()
|
|
}
|
|
}
|