File: test_vis_mod_completion.f90

package info (click to toggle)
fortran-language-server 3.2.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,268 kB
  • sloc: python: 9,688; f90: 1,195; fortran: 30; makefile: 28; ansic: 20
file content (14 lines) | stat: -rw-r--r-- 250 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module foo
   implicit none
   public :: length
   private
   integer :: len
   integer :: length
end module foo

program test_private
   use foo, only: length
   use test_vis_mod
   implicit none
   print*, some_var, length
end program test_private