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

Key: RSRP-34631
Type: Bug Bug
Status: Open Open
Priority: Major Major
Assignee: Eugene Pasynkov
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 1
Operations

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

ReSharpes parses an expression differently from compiler

Created: 19 Jan 07 18:40   Updated: 09 Apr 08 17:50
Component/s: PSI - Parser
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

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

Build: 337


 Description  « Hide
Consider the following code:
using System;

unsafe struct A
{
    public static void * operator &(bool x, A y)
    {
        throw new NotImplementedException();
    }

    static void Foo(object x, A y)
    {
        void * p = x is int ? & y;
        void * q = x is int ? & y : null;
    }
}


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