blob: 15a3281fa78d2eb60b8f724e31e465e2ce96fac3 [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);
}