You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parsing fails with visibility statements and other definitions in unnamed programs or #include files when no enclosing scope is present but is required for valid Fortran, example below.
USE test_mod ! Throws error (needs enclosing scope)
type t_test ! Throws error on following visibility statement (needs enclosing scope)
integer i
end type t_test
INTERFACE ! Does not throw error but needs enclosing scope
SUBROUTINEtest_sub()
ENDSUBROUTINEtest_sub
END INTERFACE
public :: t_test ! Throws error when matching to definition
The text was updated successfully, but these errors were encountered:
Parsing fails with visibility statements and other definitions in unnamed programs or
#include
files when no enclosing scope is present but is required for valid Fortran, example below.The text was updated successfully, but these errors were encountered: