blob: 890bedbc826ba6c1d1bb5724ec654e13e16bb6ff [file] [log] [blame]
// Copyright (c) 2018, 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.
/// @description Regression test for the issue 33184 (No error when run dart
/// class with incorrect instantiation to bound)
/// @Issue 33184
/// @author iarkh@unipro.ru
class D<T extends Comparable<T>> {}
class E<T extends D> {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {}