blob: 6565e9ed0f9457846fc26a9bacb9cd1afda2313a [file] [log] [blame]
/*
* Copyright (c) 2018, 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 If s starts with const, then it is a compile-time error if any
* element expression is not a compile-time constant expression, or if T is not
* a compile-time constant type.
*
* @description Checks that it's a compile-time error if there is an
* element expression which is not a compile-time constant expression
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=constant-update-2018
class A {
const A();
}
class B extends A {
const B();
}
class C extends B {
const C();
}
main() {
var x;
var v1 = const {1, 2, '3', new A()}; //# 01: compile-time error
var v2 = const [const B(), const C(), const A(), x]; //# 02: compile-time error
const v3 = {1, 2, '3', new A()}; //# 03: compile-time error
const v4 = [const B(), const C(), const A(), x]; //# 04: compile-time error
}