Reporter | Vladimir Reshetnikov (nikov) |
---|---|
Created | Aug 29, 2011 1:55:54 AM |
Updated | Nov 4, 2011 1:41:59 PM |
Resolved | Nov 4, 2011 1:41:59 PM |
Priority | Normal |
Type | Unspecified |
Fix versions | 6.1 |
State | Fixed |
Assignee | Evgeny Pasynkov (pasynkov) |
Subsystem | No subsystem |
Affected versions | No Affected versions |
Fixed in build | 6.1.0.11507 |
// Project A, .NET 3.5 using System; public static class E { public static void Foo(this Action<string> x) { } }
// Project B, .NET 4.0 // Reference to the Project A using System; static class Program { static void Main() { Action<object> x = null; x.Foo(); // here } }