8b9b85e7f5
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
30 lines
516 B
C#
30 lines
516 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
class AsyncTypeInference
|
|
{
|
|
public static int Main ()
|
|
{
|
|
Test (async l => await Task.Factory.StartNew (() => 1));
|
|
Test (async l => { return await Task.Factory.StartNew (() => 1); });
|
|
Test2 (async l => { await TT (); } );
|
|
Test2 (async l => { TT (); } );
|
|
return 0;
|
|
}
|
|
|
|
static Task TT ()
|
|
{
|
|
return Task.Factory.StartNew (() => 2);
|
|
}
|
|
|
|
static void Test<T> (Func<int, Task<T>> arg)
|
|
{
|
|
arg (0);
|
|
}
|
|
|
|
static void Test2<T> (Func<int, T> arg)
|
|
{
|
|
arg (0);
|
|
}
|
|
}
|