blob: 78b529da79698ee599d47dca5b81f788baf01eba [file] [log] [blame]
program multipleIfSelections2
if (.true.) then
a = 2
end if
if (x .LT. y .OR. y .GT. 5 .AND. 6 .GE. 6) a = 1
!<<<<< 2, 5, 5, 53, fail-initial
!!! This test shows the refactoring failing the initial precondition because multiple IF statements and IF
!!! constructs are selected, while the refactoring can only handle one at a time.
end program