Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
codegen
/
notNullAssertions
/
noAssertionForNullableCaptured.kt
blob: 5cede7badaa7f0d9fccd3da17b5eb4b246f63fed [
file
] [
log
] [
blame
]
class
A
<
T
>
{
fun add
(
element
:
T
)
{}
}
public
fun
<
R
>
foo
(
x
:
MutableCollection
<
in
R
>,
block
:
()
->
R
)
{
x
.
add
(
block
())
}