satamas / fortran-plugin

Fortran language plugin for IntelliJ Idea
Apache License 2.0
79 stars 18 forks source link

Plugin marks functions after interface outside modules as error #156

Open hippalectryon-0 opened 4 months ago

hippalectryon-0 commented 4 months ago

Example, outside any module:

interface
!...
end interface

function FUNC()
!...
end function FUNC

This compiles fine, but the linter shows an error on FUNC.