4189237330
Change-Id: Ia7dc56774599a17d4a29d03ec8ec07cb01995fdb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/137300 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
16 lines
383 B
Dart
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() {}
|