Wiki

Ticket #358 (closed defect: fixed)

Opened 10 years ago

Last modified 10 years ago

Stackoverflow on cyclical inheritance

Reported by: Charles Owned by: Charles
Priority: medium Milestone:
Component: Cobra Compiler Version: 0.9.6
Keywords: Cc:

Description

class Program
    def main
        pass
    
interface IFoo inherits IFooBar
    var x as int

interface IBar inherits IFoo
    var y as int

interface IFooBar inherits IFoo, IBar  # the order of the interfaces is what blows it up
    pass

Change History

Changed 10 years ago by Charles

  • owner set to Charles
  • status changed from new to assigned

Fix is on the way.

Changed 10 years ago by Charles

  • status changed from assigned to closed
  • resolution set to fixed

Fixed in changeset:3102

Note: See TracTickets for help on using tickets.