blob: 2e43aaf62be29a120bf5373ddc554b226dbdbce4 [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. Then k may include at most one
* superinitializer in its initializer list or a compile-time error occurs.
* @description Checks that it is a a compile-time error if a generative constructor
* includes two different superinitializers in its initializer list.
* @compile-error
* @author vasya
* @reviewer pagolubev
* @reviewer iefremov
*/
class A {
A();
A.foo();
}
class B extends A {
B() : super(), super.foo();
}
main() {
try {
var x = new B();
} catch (x){}
}