blob: 4e2eb2d2bc52b0170030a30f1c36ba0964dcf475 [file] [log] [blame]
program TestExtractVariable
contains
subroutine Sub()
integer :: x
x = 1
if(x==1) then
x=2
end if
end subroutine Sub
end program TestExtractVariable