mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
284f662022
Change-Id: I764d0457da85b2935e1d83309eab4c4b5b3ea000 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/126204 Commit-Queue: Bob Nystrom <rnystrom@google.com> Reviewed-by: Lasse R.H. Nielsen <lrn@google.com> Auto-Submit: Bob Nystrom <rnystrom@google.com>
22 lines
668 B
Dart
22 lines
668 B
Dart
// Copyright (c) 2012, 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.
|
|
|
|
import "package:expect/expect.dart";
|
|
|
|
main() {
|
|
List<int> list1 = <int>[1, 2, 3];
|
|
List<int> list2 = const <int>[4, 5];
|
|
List<String> list3 = <String>[];
|
|
Set<int> set1 = new Set<int>();
|
|
set1..add(11)..add(12)..add(13);
|
|
Set set2 = new Set();
|
|
|
|
Expect.equals(3, list1.last);
|
|
Expect.equals(5, list2.last);
|
|
Expect.throwsStateError(() => list3.last);
|
|
|
|
Expect.isTrue(set1.contains(set1.last));
|
|
|
|
Expect.throwsStateError(() => set2.last);
|
|
}
|