Reporter | Vladimir Reshetnikov (nikov) |
---|---|
Created | Apr 14, 2012 7:28:54 AM |
Updated | Apr 14, 2012 7:28:54 AM |
Priority | Normal |
Type | Bug |
Fix versions | No Fix versions |
State | Submitted |
Assignee | Unassigned |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | No Fixed in build |
using System; using System.Threading.Tasks; class C { Func<Task<Exception>> func = async () => new {caret} // Smart completion }
Actual result:
Func<Task<Exception>> func = async () => new Task<Exception>();
Expect:
Func<Task<Exception>> func = async () => new Exception();