blob: 22c88b4c3bd7bb8a8abb958ea3381acf3dddfe74 [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();
}