blob: 9da782f526229a9123e4d23695093cbcdc2fd9e0 [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 superinterface
* is annotated with @proxy.
* @static-clean
* @author kaigorodov
* @note issue #16233
*/
import "../../Utils/expect.dart";
@proxy
class S {}
class C implements S {
}
main() {
Expect.throws(() => new C().foo
, (e)=>e is NoSuchMethodError
);
}