1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 16:00:07 +08:00
SpaceVim/bundle/vim-matchup/test/issues/63/test.f90
2020-06-13 14:06:35 +08:00

17 lines
262 B
Fortran
Vendored

program matchup_parsing
real :: x = 1.0, y = 2.0, a
if (x < y) then
if (x == 0) stop
a = y / x
else
if (y == 0) stop ! matchup sees corresponding `if - end if` pairs from HERE
a = x / y
end if ! to HERE
write(*, *) a
end program