blob: 6be045e46c0c626a13e761d7d23abd11b9960ed1 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion It is a static type warning if a type variable is supertype of
* its upper bound.
* @description Checks that a warning is produced.
* @static-warning
* @author pagolubev
* @reviewer kaigorodov
*/
import "../../Utils/dynamic_check.dart";
class A {}
class B extends A {}
class G<T extends B> {}
main() {
checkTypeError(() {
new G<A>(); /// static type warning
});
}