blob: c8798f9ffeeaf54f02e41a4b27aa8a2402ac7c5d [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