[LLVM] Fix Maintainers.md formatting (NFC)
[llvm-project.git] / flang / test / Semantics / modfile56.f90
blob9f15e64f9a6e99e2b4a4feabe516c5bde2a35bbf
1 ! RUN: %python %S/test_modfile.py %s %flang_fc1
2 ! Named constant array with non-default lower bound
3 module m
4 real, parameter :: x(0:0) = [0.]
5 end
7 !Expect: m.mod
8 !module m
9 !real(4),parameter::x(0_8:0_8)=[REAL(4)::0._4]
10 !end