Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
postfixIncSmartCast.kt
blob: bad4e4a6e0281a778bdb5d7d8a629e430e784836 [
file
]
open
class
I
{
operator
fun inc
():
ST
=
ST
()
}
class
ST
:
I
()
fun main
()
{
var
local
=
I
()
val x
:
ST
=
<!
TYPE_MISMATCH
!>
local
++<!>
val y
:
ST
=
<!
TYPE_MISMATCH
!>
local
<!>
}