Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
explicitDefinitelyNotNullableViaIntersection
/
reifiedArguments.fir.kt
blob: 2d0b75fc98e8edc106467f2d7bbc1a5e755a5a2f [
file
]
// SKIP_TXT
// !LANGUAGE: +DefinitelyNonNullableTypes
inline
fun
<
reified T
:
Any
>
foo
()
{}
inline
fun
<
reified F
>
bar
()
{
foo
<
F
&
Any
>()
}