Re: Re[fpc-pascal] cursive data structures using FP generics

2008-12-11 Thread leledumbo
> Is there a bug report about it? Err... no, because I thought it was just due to its incompleteness. -- View this message in context: http://www.nabble.com/Recursive-data-structures-using-FP-generics-tp20954180p20969321.html Sent from the Free Pascal - General mailing list archive at Nabble.co

Re: Re[fpc-pascal] cursive data structures using FP generics

2008-12-11 Thread Florian Klaempfl
leledumbo schrieb: > Last time I try (about a semester ago) the compiler cannot do specialization > based on another. For instance, if we have: > > type > generic TTree = class > type > TChild = specialize TTree; <-- the compiler chokes on this > TChildren = array of TChild; > ... >