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

Key: BOO-1008
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Minor Minor
Assignee: Cedric Vivier
Reporter: Andir
Votes: 0
Watchers: 0
Operations

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

Compiler crash when a class defines a method and there is an explicit interface implementation of same signature

Created: 12/May/08 05:18 AM   Updated: 12/May/08 06:26 PM
Component/s: Compiler
Affects Version/s: 0.8.1
Fix Version/s: 0.8.2

Time Tracking:
Not Specified

Testcase included: yes


 Description  « Hide
code:

interface ITest:
def Test()

class TestClass(ITest):
def Test():
print "Test.Test"

def ITest.Test():
print "ITest.Test"

t as ITest = TestClass()
t.Test()

after compile: BCE0055: Internal compiler error: Object reference not set to an instance of an object..



 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Cedric Vivier - 12/May/08 08:57 AM
fixed in r. 2935

Andir - 12/May/08 06:26 PM
Thk, Cedric!