Files
sdk/pkg/front_end/testcases/nnbd/never_bound.dart
T
Johnni Winther 4189237330 [cfe] Avoid crash on Never as bound
Change-Id: Ia7dc56774599a17d4a29d03ec8ec07cb01995fdb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/137300
Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
2020-02-26 10:19:07 +00:00

16 lines
383 B
Dart

// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
class GenericNever<T extends Never> {
dynamic getParamType() => T;
}
errors() {
GenericNever<Null>();
GenericNever<void>();
GenericNever<int>();
}
main() {}