blob: 0baf6fe89c6e63df28c6358d739341be34fc3f95 [file] [log] [blame]
/*
* Copyright (c) 2011, 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 bool contains(T value)
* Returns true if [value] is in the set.
* @description Passes null as argument, expects no errors.
* @author pagolubev
* @reviewer msyabro
*/
import "../../../Utils/expect.dart";
main() {
Set<int> s = new Set<int>();
Expect.isFalse(s.contains(null));
s.add(null);
Expect.isTrue(s.contains(null));
}