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

Key: BOO-372
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Rodrigo B. de Oliveira
Reporter: Rodrigo B. de Oliveira
Votes: 0
Watchers: 0
Operations

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

Internal Compiler Error when resolving method overloads which contain newslot methods with byref arguments

Created: 26/Jun/05 04:39 PM   Updated: 27/Jun/05 09:35 PM
Component/s: Compiler
Affects Version/s: 0.5
Fix Version/s: 0.5.6

Time Tracking:
Not Specified

Testcase included: yes


 Description  « Hide
Boo fails to call Pointer().Foo in the following class structure:

public class PointersBase
{
public void Foo(ref int bar)

{ System.Console.WriteLine("PointersBase.Foo(int&)"); }

}

public class Pointers : PointersBase
{
public new void Foo(ref int bar)

{ System.Console.WriteLine("Pointers.Foo(int&)"); }

}



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
There are no comments yet on this issue.