brintos

brintos / llvm-project-archived public Read only

0
0
Text · 316 B · 7650fe3 Raw
18 lines · plain
1! RUN: %python %S/test_modfile.py %s %flang_fc12! Check that implicitly typed entities get a type in the module file.3 4module m5  public :: a6  private :: b7  protected :: i8  allocatable :: j9end10 11!Expect: m.mod12!module m13! real(4)::a14! real(4),private::b15! integer(4),protected::i16! integer(4),allocatable::j17!end18