blob: 970c3d1732c007a9203dd6f0782e1e78b7b6e87c [file] [log] [blame]
// Copyright (c) 2013, 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.
// @dart = 2.9
/// @assertion Iterable<E> reversed
/// Returns an [Iterable] of the objects of this [List] in reverse order.
/// @description Checks that [reversed] is read-only and can't be set.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<int> list) {
dynamic l = new Int32List.fromList(list);
try {
l.reversed = list;
Expect.fail("[reversed] should be read-only");
} on NoSuchMethodError {}
}
main() {
check([]);
var list = new List<int>(255);
for (int i = 0; i < 255; ++i) {
list[i] = i;
}
check(list);
}