blob: f7152c6cfae55a7e1aefdc763e87685d3e0b8eb3 [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 Completer()
/// Create a new completer.
/// @description Checks that [Completer] creates an object of class Completer.
/// @author msyabro
import "../../../Utils/expect.dart";
import "dart:async";
main() {
Completer completer = new Completer();
Expect.isTrue(completer is Completer);
}