dart-sdk/tests/corelib_2/list_filled_type_argument_test.dart
Ben Konyi b1bca14dab Migrated test block 13 to Dart 2.0.
Removed list_index_of2_test as it shouldn't be valid in Dart 2.0.

BUG=
R=jcollins@google.com, rnystrom@google.com

Review-Url: https://codereview.chromium.org/2994543002 .
2017-08-04 11:21:22 -07:00

16 lines
499 B
Dart

// 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.
import "package:expect/expect.dart";
main() {
var a = new List<int>.filled(42, 42);
Expect.isTrue(a is List<int>);
Expect.isFalse(a is List<String>);
a = new List<int>.filled(42, 42, growable: true);
Expect.isTrue(a is List<int>);
Expect.isFalse(a is List<String>);
}