Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
smartCasts
/
lambdaCallAnnotated.kt
blob: f8ec7b27ceb4f96f11450d40a40bd77fc8ae5e89 [
file
]
// See KT-9134: smart cast is not provided inside lambda call
@Target
(
AnnotationTarget
.
EXPRESSION
)
@Retention
(
AnnotationRetention
.
SOURCE
)
annotation
class
My
fun bar
():
Int
=
@My
{
var
i
:
Int
?
i
=
42
<!
DEBUG_INFO_SMARTCAST
!>
i
<!>
}()