blob: f33613093284ae8d7217c194f78f3a579fd2a552 [file] [log] [blame]
program convert_ifConstructToIfStmt
implicit none
print *, "This is a test"
if(.true.) then
a = 1
end if
!<<<<< 4, 5, 6, 11, pass
!!! This test shows the refactoring successfully refactoring a simple valid IF construct into a valid IF statement.
end program