blob: a6c2afdd649f275e217995c2ced56aec3141e8fc [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 Iff no constructor is specified for a class C, it implicitly has
* a default constructor C() : super() {}, unless C is class Object.
* @description Checks that 'default' constructor is not generated if the class
* declares a named constructor.
* @static-warning
* @author iefremov
* @reviewer rodionov
*/
import "../../Utils/expect.dart";
class C {
var x;
C.someConstructor(this.x);
}
main() {
try {
new C(); /// static warning
Expect.fail("Should throw an NoSuchMethodError");
} on NoSuchMethodError catch (e) {}
}