blob: ed04bda16b0d1a2cf77d0722382bd3096f69ffc6 [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 implements B {
var x;
}
class B {
var x = 0;
}
main() {}