blob: 1d2e5b15c43f2fc5f2cf644176149aa2cb23b428 [file] [log] [blame]
// Copyright (c) 2021, 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.12
import 'package:test/test.dart';
import 'common/is_opted_out.dart';
void main() {
test('is opted in to sound null safety', () {
expect(isOptedOut, isFalse);
});
}