c======================================================================= c FILE: TEST35.FOR c DATE: 25 July 2003 c c TEST: Attempt to modify an expression through a dummy argument. c c Contact: Arnaud Desitter c======================================================================= c expressions cannot be assigned to. c see for reference to standard subroutine m(i) integer i i = 3 end program test35 integer i i = 2 c illegal call m( (i) ) print *, "Test35 diagnostic test failed." end