Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd_mixed
/
type_parameter_nullability.dart.textual_outline.expect
blob: 1d57193d5934db833f38e9cf01d8dfb5dc2948e6 [
file
] [
log
] [
blame
]
import
'type_parameter_nullability_lib.dart'
;
class
C
<
T
extends
num
?,
S
,
U
>
{
void
promoteNullable
(
T
?
t
)
{}
void
nullableAsUndetermined
(
S
?
s
)
{}
}
main
()
{}