Fixed type

This commit is contained in:
Anthony Scemama 2024-04-22 10:58:25 +02:00
parent 76946321d6
commit 01899b41b2
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ re_decl = re.compile( "".join( [ r"^\ *",
r"|intrinsic *(::)?",
r"|external *(::)?",
r"|equivalence *(::)?",
r"|type ?\(",
r"|type *\(",
r"|type +",
r"|end ?type",
r")[^=(]"
] ) )