blob: fb29f75331dc6071f7efedf66a88d6b416357ada [file] [log] [blame]
/*
* Copyright (c) 2013, 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.
*/
/**
* @assertion LinkedHashSet()
* Creates an empty [Set].
* @description Checks that an empty [LinkedHashSet] is created
* @author msyabro
*/
import "../../../Utils/expect.dart";
import "dart:collection";
main() {
LinkedHashSet set = new LinkedHashSet();
Expect.isTrue(set is LinkedHashSet);
Expect.isTrue(set.isEmpty);
}