Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
! RUN: %S/test_errors.sh %s %t %f18
! Simple check that if constructs are ok.
if (a < b) then
a = 1
end if
a = 2
else
a = 3
endif
a = 4
else if(a == b) then
a = 5
a = 6
a = 7
elseif(a > b) then
a = 8
a = 9
a = 10
a = 11
a = 12
a = 13
else if(a > b) then
a = 14
if (f()) then
a = 15
contains
logical function f()
f = .true.
end