difference-scheme

Results 7 comments of difference-scheme

With the latest main branch this now compiles when using the following options: ``` lfortran -c typed_allocation.f90 ``` But it fails with separate compilation, i.e. when using ``` lfortran -c...

I presume this is now one of those cases that were reported in #7432.

This bug also qualifies for the OOP label. Having done more testing, I also believe that together with bug #7707 it should be given the highest priority for OOP support.

Thanks @certik. Once these two bugs are fixed we'll be able to compile (including code generation) 80% of that OO application. Getting the remaining 20% to compile should then be...

@HarshitaKalani I just rechecked it with the present main branch. You are actually right. Thanks for pointing this out. I need to get back to the original application, to see...

What is actually failing in the true application is a combination of the above `allocate` statement, and the subsequent immediate initialization of the involved array via some code of the...

I am afraid that the present bug is not resolved yet. The following variation of the above code still fails: $ cat test.f90 ``` module typed_allocation type :: Base real...