blob: df9459c86b7cfdbb3a884d18e9b7c473b974fbf7 [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. It is a compile-time error if
* more than one initializer corresponding to a given instance variable appears
* in k's initializer list.
* @description Checks that a compile-time error is produced if two identical initializers
* appear in an initializer list.
* @compile-error
* @author vasya
* @reviewer pagolubev
* @reviewer iefremov
*/
class C {
C(x, y) : this.x = x, this.x = y;
var x;
}
main() {
try {
C c = new C(0, 1);
print(c.x);
} catch (x){}
}