blob: 71602e2184364510c6cbf7cdc40b57c02d070c70 [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 factory Completer()
* Create a completer
* @description Checks that [Completer] creates an object of type Completer
* which have all methods of Completer interface.
* @author msyabro
* @reviewer kaigorodov
*/
import "../../../Utils/expect.dart";
import "dart:async";
main() {
Completer completer = new Completer();
Expect.isTrue(completer is Completer);
}