mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
8 lines
317 B
Kotlin
Vendored
8 lines
317 B
Kotlin
Vendored
// INTENTION_TEXT: Surround with if (VERSION.SDK_INT >= VERSION_CODES.KITKAT) { ... }
|
|
// INSPECTION_CLASS: org.jetbrains.android.inspections.klint.AndroidLintInspectionToolProvider$AndroidKLintInlinedApiInspection
|
|
|
|
class Test {
|
|
fun foo(): Int {
|
|
return android.R.attr.<caret>windowTranslucentStatus
|
|
}
|
|
} |