AA: add tests about wildcard suppress
^KT-61734
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
// WITH_STDLIB
|
||||
|
||||
interface NavGraphBuilder
|
||||
|
||||
interface AnimatedContentTransitionScope<S>
|
||||
|
||||
interface NavBackStackEntry
|
||||
|
||||
interface EnterTransition
|
||||
|
||||
fun NavGraphBuilder.compose(
|
||||
enter<caret>Transition: (@JvmSuppressWildcards(suppress = false)
|
||||
AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null,
|
||||
) = TODO()
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
KtType: @kotlin.jvm.JvmSuppressWildcards(suppress = false) (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)?
|
||||
PsiType: PsiType:Function1<? super AnimatedContentTransitionScope<NavBackStackEntry>, ? extends EnterTransition>
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
// WITH_STDLIB
|
||||
|
||||
interface NavGraphBuilder
|
||||
|
||||
interface AnimatedContentTransitionScope<S>
|
||||
|
||||
interface NavBackStackEntry
|
||||
|
||||
interface EnterTransition
|
||||
|
||||
fun NavGraphBuilder.compose(
|
||||
enter<caret>Transition: (@JvmSuppressWildcards(suppress = true)
|
||||
AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)? = null,
|
||||
) = TODO()
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
KtType: @kotlin.jvm.JvmSuppressWildcards(suppress = true) (AnimatedContentTransitionScope<NavBackStackEntry>.() -> EnterTransition?)?
|
||||
PsiType: PsiType:Function1<? super AnimatedContentTransitionScope<NavBackStackEntry>, ? extends EnterTransition>
|
||||
Reference in New Issue
Block a user