blob: 8f419a4ad9206065c4e43c9abf64a58022bb114a [file] [log] [blame]
// Copyright (c) 2018, 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.
// @dart = 2.9
/// @assertion bool isBroadcast
/// Read-only
/// @description Checks that [isBroadcast] is a read-only property.
/// @author iarkh@unipro.ru
import "../../../Utils/expect.dart";
import "dart:io";
main(List<String> args) {
dynamic check = stdin;
Expect.throws(() { check.isBroadcast = true; },
(e) => e is NoSuchMethodError);
}