blob: 3490dcdfb55688d1bbe641b93f56bcc2a8bef321 [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 C be a concrete class that does not declare its own
* noSuchMethod().
* It is a static warning if the implicit interface
* of C includes an instance member m of type F and C does not declare or
* inherit a corresponding instance member m of type F' such that F' <: F.
* @description Checks that it is a static warning if a class does not declare
* nor inherit an instance method declared in class' interface.
* @static-warning
* @author msyabro
* @reviewer kaigorodov
*/
abstract class I {
foo();
}
class C implements I { /// static type warning
}
main () {
new C();
}