hansec / fortran-language-server

Fortran Language Server for the Language Server Protocol
MIT License
294 stars 57 forks source link

"Unexpected End of Scope at line X" when using ";" to put 2 end in the same line #229

Open kosiu opened 8 months ago

kosiu commented 8 months ago

This code generate error: "Unexpected End of Scope at line ..."

    do i=1,size(arr); associate(point => arr(i))
    ....
    end associate; end do

But this one not:

    do i=1,size(arr); associate(point => arr(i))
    ....
    end associate
end do

version of fortls: 2.13.0