blob: 072c740ab762f4d8c07d797844b0e822057f73d5 [file] [log] [blame]
// Copyright (c) 2022, 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.
// VMOptions=--enable-mirrors=false
// Verfies that '--enable-mirrors=false' affects conditional imports and
// constant bool.fromEnvironment.
// @dart = 2.9
import "package:expect/expect.dart";
import 'enable_mirrors_lib_false.dart'
if (dart.library.mirrors) 'enable_mirrors_lib_true.dart';
main() {
Expect.isFalse(const bool.fromEnvironment('dart.library.mirrors'));
Expect.isFalse(dartLibraryMirrorsConditionalImport);
}