blob: 2b3ef2dad4a60fa579cdf7f607be7aa0c18a880f [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.
// Check that an unresolved super field is an error.
class A {
}
class B {
foo() {
return super.x;
}
}