blob: e8b51ced03d29cd4c2d83ed2902d6ed52e7758ab [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 one cannot access a static method through super.
class A {
static x() {}
}
class B {
foo() {
return super.x;
}
}