blob: df70d2a7bb7a33cd7192d1a038c9767671da038b [file] [log] [blame]
program namesProv2
implicit none
common /names/ a, b, this_is_renamed
integer a, b, this_is_renamed
a = 2
b = 4
this_is_renamed = a + b
end program namesProv2