ef3ba5f0b1
Fixes problem with INFORMATION highlight type in batch mode (IDEA 181). It's no more required to report INFORMATIONs in unit tests in batch.
6 lines
99 B
Kotlin
Vendored
6 lines
99 B
Kotlin
Vendored
// HIGHLIGHT: INFORMATION
|
|
|
|
fun foo() {
|
|
var b: Boolean? = null
|
|
val x = !(b <caret>?: true)
|
|
} |