blob: 014e0555fa578fe4e545a953f81d97e302ea4f55 [file] [log] [blame]
program TestExtractVariable
contains
subroutine Sub()
integer :: x
logical :: y
x = 1
y = (x == 1)
if(y) then
x=2
end if
end subroutine Sub
end program TestExtractVariable