blob: b290957588b7923e483ae4b1cc9fe185d3dd2c3f [file]
// Copyright (c) 2017, 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.
library test;
void test() {
List<int> l;
l = [/*error:LIST_ELEMENT_TYPE_NOT_ASSIGNABLE*/ "hello"];
l = (l = [1]);
}
main() {}