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