blob: 1f1277d6955d1339837dfbe680cd404a827cfcfc [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.9
import 'package:test/test.dart';
import 'common/is_opted_out.dart';
void main() {
test('is opted out of sound null safety', () {
expect(isOptedOut, isTrue);
});
}