dart-sdk/tests/language/vm/regress_flutter_42845_test.dart
Lasse R.H. Nielsen 2360783808 Expire experiments released in earlier stable versions.
Remove messages referring to expired `non-nullable` experiment.
Remove occurrences of --enable-experiment with expired experiments.

TEST=Flags were expired. If existing tests still run, it's a success.

Change-Id: Id66d78eb0a3191ec5e31375faf0effd9ea7b768f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/219789
Auto-Submit: Lasse R.H. Nielsen <lrn@google.com>
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
2021-11-11 08:28:31 +00:00

18 lines
497 B
Dart

// Copyright (c) 2019, 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.
// Tests exported extensions.
import "regress_flutter_42845_lib.dart";
export "regress_flutter_42845_lib.dart" show TestExtension, UnusedExtension;
import "package:expect/expect.dart";
int i = 42;
void main() {
Expect.isTrue(i.isPositive);
Expect.isFalse(i.isNegative);
}