It's a pretty old one too: https://github.com/JuliaLang/julia/issues/269.


On Thu, Mar 27, 2014 at 6:13 AM, Tobias Knopp
<[email protected]>wrote:

> This is currently not possible but you can use
>
>
> type A
>   foo::B
> end
>
> type B
>   bar
> end
>
> as a workaround. If you search in Julias issue tracker, you will find an
> issue where this is discussed.
>
>
> Am Donnerstag, 27. März 2014 11:02:04 UTC+1 schrieb Freddy Chua:
>
>> Hi I believe this question have not been asked as I could not find
>> anything related to "circular"
>>
>> So I have two composite types
>>
>> type A
>>   foo::B
>> end
>>
>> type B
>>   bar::A
>> end
>>
>> The execution of this script results in a undefined error. How do I
>> resolve this?
>>
>

Reply via email to