History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: RSRP-43660
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Oleg Stepanov
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
ReSharper

Cast completion doesn't take qualifier into account

Created: 19 Jun 07 18:09   Updated: 05 Sep 08 10:33
Component/s: Code Completion
Fix Version/s: 4.5
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 465


 Description  « Hide
class Program
{
    static void Main()
    {
        object o = new object();
        int x = (o.);
    }
}

Invoke smart completion after 'o.'. Result:

using Int32=System.Int32;

class Program
{
    static void Main()
    {
        object o = new object();
        int x = (Int32);
    }
}

Expected:

class Program
{
    static void Main()
    {
        object o = new object();
        int x = (o.GetHashCode());
    }
}


 All   Comments   Work Log   Change History      Sort Order:
There are no comments yet on this issue.