blob: c7d8038500dfe8d6378d7c92a28059835bb8aeb0 [file] [log] [blame]
! RUN: %S/test_modfile.sh %s %t %flang_fc1
! REQUIRES: shell
! Check that implicitly typed entities get a type in the module file.
module m
public :: a
private :: b
protected :: i
allocatable :: j
end
!Expect: m.mod
!module m
! real(4)::a
! real(4),private::b
! integer(4),protected::i
! integer(4),allocatable::j
!end