Files
sdk/tests/language/set_literals/in_initializer_test.dart
T
Robert Nystrom ccb380117c Migrate language_2/set_literals to NNBD.
Change-Id: Iac6e6f6e6fbd6b426398f0fca954d8a73cfcb2eb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/150844
Auto-Submit: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Srujan Gaddam <srujzs@google.com>
Reviewed-by: Srujan Gaddam <srujzs@google.com>
2020-06-11 23:38:06 +00:00

17 lines
475 B
Dart

// 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.
class Bag {
final Set<Object> things;
Bag({Set<Object>? things}) : this.things = things ?? <Object>{};
Bag.full({Set<Object> this.things = const {"cat"}});
}
main() {
new Bag();
new Bag(things: {});
new Bag.full();
new Bag.full(things: {});
}