1! RUN: %python %S/test_modfile.py %s %flang_fc1 2 3! Test that the implicit SAVE attribute (set 4! for the equivalenced symbols) is not written 5! into the mod file. 6module implicit_save 7 real dx,dy 8 common /blk/ dx 9 equivalence(dx,dy) 10end module implicit_save 11 12!Expect: implicit_save.mod 13!moduleimplicit_save 14!real(4)::dx 15!real(4)::dy 16!common/blk/dx 17!equivalence(dx,dy) 18!end 19