blob: 9c54a52154efda6aee3e4f8c883a97d5a098b011 [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 new Stream()
* @description Checks that default constructor works.
* @author kaigorodov
*/
import "dart:async";
class MyStream<T> extends Stream<T> {
StreamSubscription<T> listen(void onData(T event),
{void onError(error), void onDone(), bool cancelOnError})
{
return null;
}
}
main() {
new MyStream();
}