eMoflon / emoflon-core

Core components of eMoflon
Other
5 stars 1 forks source link

Nonterminating build process if inheritance relation is cyclic #120

Closed RolandKluge closed 5 years ago

RolandKluge commented 5 years ago

How to reproduce:

class Block extends Boulder {

}

class Board {

}

class Boulder {

}

class Figure extends Figure {

}

class Sokoban extends Figure {

}