blob: be731dbfa991f24a04421eccc840816979233519 [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 It is a compile-time error if a constant constructor is declared
* by a class that has a non-final instance variable.
* @description Checks that compile-time error is produced when a class with
* constant constructor inherits a non-final instance variable.
* @author iefremov
*/
class C {
var x;
}
class CC extends C {
}
class A extends CC {
const A();
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
const A();
}