blob: 2e2dd622b90148eba9a671f9029f22ba3d778385 [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.
*/
/**
* @assertion Let T be the static type of e. It is a static type warning if
* T does not have a getter named m unless T or a superinterface of T is
* annotated with an annotation denoting a constant identical to the constant @proxy
* deļ¬ned in dart:core.
* @description Checks that there is no static warning if the class of super in
* a super.m invocation does not have a getter named m but the class is annotated
* with @proxy.
* @static-clean
* @author kaigorodov
*/
import "../../Utils/expect.dart";
@proxy
class C {
}
main() {
Expect.throws(() => new C().foo
, (e)=>e is NoSuchMethodError
);
}