Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/suppressedByAtomicIntegerList.kt
T
2018-11-13 10:15:49 +03:00

10 lines
198 B
Kotlin
Vendored

// WITH_RUNTIME
// WITH_JDK
// IS_APPLICABLE: false
// DISABLE-ERRORS
import java.util.concurrent.atomic.AtomicInteger
fun main() {
val i = AtomicInteger()
val plain = i.get<caret>Plain()
}