blob: 91b2c4af1f8ee632758f61e38a59f9e33c0f622d [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() {
var completer = new Completer();
Expect.isTrue(completer is Completer);
Expect.runtimeIsType<Completer>(completer);
}