blob: 6d7c12cd8f613939c4a44c083d3ab095d53b0f77 [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 compile error if a factory returns a non-null object whose
* type is not a subtype of its actual return type.
* @description Checks that returning an object whose type is not subtype of M
* from factory M.id produces a compile error.
* @compile-error
* @author pagolubev
*/
class C {}
class A {
factory A.foo() { return new C(); }
}
main() {
new A.foo();
}