boo-lang / boo

The Boo Programming Language.
BSD 3-Clause "New" or "Revised" License
874 stars 148 forks source link

Fix for abstract virtual property stub. #33

Closed MaximTrushin closed 12 years ago

MaximTrushin commented 12 years ago

Compilation of the following code resulted in BCE0055 Internal compiler error. This is fix for that.

public abstract class A: public virtual L as string: get

public abstract class B(A):

public abstract override L as string:
    get

public class C(B): pass

bamboo commented 12 years ago

Thanks!