blob: d09f7ed015bd3b2578aa19d67d084481a2a5c9e8 [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
* @reviewer kaigorodov
*/
import "../../../Utils/expect.dart";
import "dart:async";
main() {
Completer completer = new Completer();
Expect.isTrue(completer is Completer);
}