8 lines
301 B
Kotlin
Vendored
8 lines
301 B
Kotlin
Vendored
// INSPECTION_CLASS: com.android.tools.idea.lint.AndroidLintUseValueOfInspection
|
|
|
|
@Suppress("UsePropertyAccessSyntax", "UNUSED_VARIABLE", "unused", "UNUSED_PARAMETER", "DEPRECATION")
|
|
class Simple {
|
|
fun test() {
|
|
<warning descr="Use `Integer.valueOf(5)` instead">Integer(5)</warning>
|
|
}
|
|
} |