AMDGPU: Allow f16/bf16 for DS_READ_TR16_B64 gfx950 builtins (#118297)
[llvm-project.git] / flang / test / Semantics / modfile29.f90
blob7650fe301b289c20b7554c04e5817c30d2716f97
1 ! RUN: %python %S/test_modfile.py %s %flang_fc1
2 ! Check that implicitly typed entities get a type in the module file.
4 module m
5 public :: a
6 private :: b
7 protected :: i
8 allocatable :: j
9 end
11 !Expect: m.mod
12 !module m
13 ! real(4)::a
14 ! real(4),private::b
15 ! integer(4),protected::i
16 ! integer(4),allocatable::j
17 !end