blob: 5d593e2699af7a543aaea9b973b6234a1af220f9 [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 oen cannot access a static getter through super.
class A {
static get x {}
}
class B {
foo() {
return super.x;
}
}