blob: cc28efdcec665314cbe5369a80dea72ecca58e0c [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 k be a generative constructor. If no superinitializer is
/// provided, an implicit superinitializer of the form super() is added at the
/// end of k's initializer list, unless the enclosing class is class Object.
/// @description Checks that super constructor is invoked if no superinitializer
/// is provided.
/// @author pagolubev
import "../../../../Utils/expect.dart";
class A {
A() : x = 13;
var x;
}
class C extends A {
C();
}
main() {
var c = new C();
Expect.equals(13, c.x);
}