blob: 3f7294f14b3caa8b0afb25313e4b1d07ec24d9b5 [file] [log] [blame]
// Copyright (c) 2017, 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.
/*@testedFeatures=inference*/
library test;
class A {}
class B<T extends A> {}
B v = null;
main() {
v;
}