blob: e7efad8f8b0fffe024e807325740b3075d42c558 [file] [log] [blame]
// Copyright (c) 2019, 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.
/*cfe.library: nnbd=false*/
/*cfe:nnbd.library: nnbd=true*/
main() {
// ignore: unused_local_variable
var a0 = /*Map<dynamic,dynamic>*/ {};
// ignore: unused_local_variable
var a1 =
/*cfe|dart2js.Set<int>*/
/*cfe:nnbd.Set<int!>*/
{/*int*/ 0};
// ignore: unused_local_variable
var a2 = /*Set<num>*/ {/*int*/ 0, /*double*/ 0.5};
// ignore: unused_local_variable
var a3 = /*Set<Object>*/ {/*int*/ 0, /*String*/ ''};
}