blob: 3bf7b722f28d998e51dce7e4e3aaf7f3ce7a36bc [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 final bool isBroadcast
/// Reports whether this stream is a broadcast stream.
/// @description Checks that default implementation returns false.
/// @author kaigorodov
import "dart:isolate";
import "../../../Utils/expect.dart";
main() {
ReceivePort s = new ReceivePort();
Expect.isFalse(s.isBroadcast);
s.close();
}