blob: d74161410eac2696ccd6f73dc5d12ac91fc961fb [file]
// Copyright (c) 2020, 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.
// Don't let the formatter put a blank line above the static error marker.
// TODO(rnystrom: Figure out why the formatter is doing that.
// dart format off
// Implicit language version 2.12 from configuration.
part "src/part_of_im2.12_v_im2.12.dart";
// Specification requires the part fsrc/ile to have
// the same explicit language version marker
// as the including library,
// not just the same language version.
part "src/part_of_im2.12_v_ex2.12.dart";
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INCONSISTENT_LANGUAGE_VERSION_OVERRIDE
// [cfe] The language version override has to be the same in the library and its part(s).
part "src/part_of_im2.12_v_ex2.13.dart";
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
// [analyzer] COMPILE_TIME_ERROR.INCONSISTENT_LANGUAGE_VERSION_OVERRIDE
// [cfe] The language version override has to be the same in the library and its part(s).
void main() {
print(i212i212);
}