6336e8e2d3
+ add checks for agnostic subtyping differences Closes #41657 Change-Id: I1e6b558edbfcb1ca282e0e4c788c6a7a7db6bfd3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/148126 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
9 lines
299 B
Dart
9 lines
299 B
Dart
// 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.
|
|
|
|
const a = <Null>[] as List<int>;
|
|
const b = <int?>[] as List<int>;
|
|
|
|
void main() {}
|