blob: 248c9408beeb71c76bc0b54686ba18455a75fb26 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
import "dart:async" as asy;
class MyFuture<T extends core::Object> extends core::Object implements asy::Future<self::MyFuture::T> {
constructor •() void
: super core::Object::•() {}
constructor value(self::MyFuture::T x) void
: super core::Object::•() {}
abstract method noSuchMethod(core::Invocation invocation) dynamic;
method then<S extends core::Object>((self::MyFuture::T) asy::FutureOr<self::MyFuture::then::S> f, {core::Function onError = null}) self::MyFuture<self::MyFuture::then::S>
return null;
}
static method test() void {
asy::Future<dynamic> f;
asy::Future<core::int> t1 = f.{asy::Future::then}<core::int>((dynamic _) asy::Future<core::int> async => await new self::MyFuture::value<core::int>(3));
asy::Future<core::int> t2 = f.{asy::Future::then}<core::int>((dynamic _) asy::Future<core::int> async {
return await new self::MyFuture::value<core::int>(3);
});
asy::Future<core::int> t3 = f.{asy::Future::then}<core::int>((dynamic _) asy::Future<core::int> async => 3);
asy::Future<core::int> t4 = f.{asy::Future::then}<core::int>((dynamic _) asy::Future<core::int> async {
return 3;
});
asy::Future<core::int> t5 = f.{asy::Future::then}<core::int>((dynamic _) self::MyFuture<core::int> => new self::MyFuture::value<core::int>(3));
asy::Future<core::int> t6 = f.{asy::Future::then}<core::int>((dynamic _) self::MyFuture<core::int> {
return new self::MyFuture::value<core::int>(3);
});
asy::Future<core::int> t7 = f.{asy::Future::then}<core::int>((dynamic _) asy::Future<core::int> async => new self::MyFuture::value<core::int>(3));
asy::Future<core::int> t8 = f.{asy::Future::then}<core::int>((dynamic _) asy::Future<core::int> async {
return new self::MyFuture::value<core::int>(3);
});
}
static method main() dynamic {}