blob: dc890cca19ec3f21d3429b368585616659afe7b2 [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();
}