Sign in
android
/
platform
/
tools
/
adt
/
idea
/
HEAD
/
.
/
android-lint
/
testData
/
lint
/
missingPermissionKotlinUpdateAnnotationSingle.kt
blob: 9444d56a0ec6fd05c18a9fb2133a3090bb1ee991 [
file
] [
log
] [
blame
]
package
p1
.
p2
import
android
.
os
.
Vibrator
import
androidx
.
annotation
.
RequiresPermission
@Suppress
(
"unused"
)
class
LocationTest
{
@RequiresPermission
(
"foo.bar.baz"
)
fun test
(
vibrator
:
Vibrator
)
{
<error>
vibrator
.
can
<caret>
cel
()</
error
>
}
}