blob: d8ea0d3b1eb11956b0dc995eb301254155d0e6e3 [file] [log] [blame]
// Copyright (c) 2016, 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 EventSink()
///
/// @description Checks that an istance of EventSink may be created.
/// @author ngl@unipro.ru
library EventSink_A01_t01;
import "dart:async";
import "../../../Utils/expect.dart";
test(EventSink create()) {
EventSink es = create();
Expect.isTrue(es is EventSink);
}