blob: 04677cb80fcb97abc953a8eade7cb16279e75606 [file] [log] [blame]
// Copyright (c) 2023, 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.
void test() {
var ({"one": num? v1, 2: _} && map) = {"one": 1, 2: 2};
print(map.runtimeType);
int i = map; // Error
}