blob: 89436c25d314cd6812fbb1093eb8a07cf0303650 [file] [log] [blame]
import 'type_parameter_nullability_lib.dart';
class C<T extends num?, S, U> {
void nullableAsUndetermined(S? s) {}
void promoteNullable(T? t) {}
}
main() {}