blob: d5810471674adb380bc4895776c673b83bb5c607 [file] [log] [blame]
// 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() {}