blob: 229bad786078c42c9c408c9b6dd05128d27a8e88 [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 It is a static warning if a non-abstract class inherits an abstract method.
* @description Checks that it is a static warning if a non-abstract class inherits an abstract method.
* @static-warning
* @author msyabro
* @reviewer rodionov
*/
abstract class A {
foo();
}
class B extends A { /// static type warning
}
main() {
try {
(new B()).foo();
} catch (e) {}
}