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

Key: RSRP-29874
Type: Bug Bug
Status: Open Open
Priority: Normal Normal
Assignee: Dmitry Lomov
Reporter: Vladimir Reshetnikov
Votes: 0
Watchers: 1
Operations

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

error CS1501: No overload for method 'Foo' takes '0' arguments

Created: 14 Oct 06 17:08   Updated: 20 Jun 07 11:00
Component/s: PSI - Resolve
Fix Version/s: 4.0
Security Level: Everybody (All jira users)

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
Issue Links:
Duplicate
 
This issue is duplicated by:
RSRP-31672 error CS1501: No overload for method ... Major Closed
RSRP-29875 Ctrl+B navigates to wrong overloaded ... Normal Closed

Build: 263


 Description  « Hide
class Base
{
    protected virtual void Foo(object[] arr) {}
}

class Derived : Base
{
    protected override void Foo(params object[] arr) {}
    static void Bar()
    {
        Derived derived = new Derived();
        derived.Foo(); // error CS1501: No overload for method 'Foo' takes '0' arguments
    }
}


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