Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
expressions
/
unnecessaryNonNullAssertion2.kt
blob: 93a8d4b69ccc36cd06f37a46acb603a2d8886d06 [
file
] [
log
] [
blame
]
// "Remove unnecessary non-null assertion (!!)" "true"
fun test
(
value
:
String
)
{
value
!!<
caret
>.
equals
(
"test"
)
}