blob: f24ce8024c100a0a2169eccc4828011797fcad2c [file] [log] [blame] [edit]
! RUN: %python %S/test_modfile.py %s %flang_fc1
module m
contains
function f() result(ptr)
character :: str
pointer(ptr, str)
ptr = 0
end
end
!Expect: m.mod
!module m
!contains
!function f() result(ptr)
!integer(8)::ptr
!pointer(ptr,str)
!character(1_8,1)::str
!end
!end