blob: 498be3b45396df46995235af67b943a3fb6320f6 [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.
// Redirection constructors must not call any super constructors.
class A {
var x;
A(this.x) {}
A.named(x) : this(3), super() {}
}
class ConstructorRedirect5NegativeTest {
static testMain() {
new A.named(10);
}
}
main() {
ConstructorRedirect5NegativeTest.testMain();
}