Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
cast
/
AsInCompoundAssignment.kt
blob: 68ca54209cfd32135340ed78c72080dc1569f4ee [
file
]
// FIR_IDENTICAL
class
A
{
var
b
=
1
}
fun
Any
.
test
()
{
(
this
as
A
).
b
+=
1
<!
USELESS_CAST
!>
as
Int
<!>
}