aa31a9162b
Change-Id: Ia33ea19a091b1172eb9b4125f5f30a625886d34e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/136632 Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
10 lines
294 B
Dart
10 lines
294 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 = <int>[];
|
|
const b = <int?>[];
|
|
const c = identical(a, b);
|
|
|
|
main() {}
|