caae6ff2ec
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!>____<!>()
|
|
}
|
|
}
|