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