8 lines
253 B
Kotlin
Vendored
8 lines
253 B
Kotlin
Vendored
// INSPECTION_CLASS: com.android.tools.idea.lint.AndroidLintSuspiciousImportInspection
|
|
|
|
//Warning
|
|
<warning descr="Don't include `android.R` here; use a fully qualified name for each usage instead">import android.R</warning>
|
|
|
|
fun a() {
|
|
R.id.button1
|
|
} |