hansec / autocomplete-fortran

https://atom.io/packages/autocomplete-fortran
MIT License
16 stars 0 forks source link

Suggestions not found when type name and member name are the same #4

Closed hansec closed 8 years ago

hansec commented 8 years ago

When a user-defined type member and user-defined type have the same name suggestions are not found. Example of problematic type definition below

TYPE test_type
  REAL(8) :: type_name
  TYPE(type_name) :: var
END TYPE test_type