Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertAssertToIf
/
stringVariable.kt.after
blob: cb1b3cf90229bf5cceca9865b171159053fa1d74 [
file
] [
log
] [
blame
]
// WITH_RUNTIME
fun foo
()
{
val f
=
"text"
if
(!
true
)
{
throw
AssertionError
(
f
)
}
}