blob: 44c82cc5720f60f41b75949900f4cab3e3dfd805 [file] [log] [blame]
// Copyright (c) 2022, 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.
import 'dart:collection';
void main() {
var map = SplayTreeMap<String, int>();
map['one'] = 1;
map['two'] = 2;
map['three'] = 3;
print(map);
var local = Queue<Object>();
Queue.castFrom<Object, String>(local);
}