You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
560 B
53 lines
560 B
! RUN: %S/test_errors.sh %s %t %f18
|
|
! Simple check that if constructs are ok.
|
|
|
|
if (a < b) then
|
|
a = 1
|
|
end if
|
|
|
|
if (a < b) then
|
|
a = 2
|
|
else
|
|
a = 3
|
|
endif
|
|
|
|
if (a < b) then
|
|
a = 4
|
|
else if(a == b) then
|
|
a = 5
|
|
end if
|
|
|
|
if (a < b) then
|
|
a = 6
|
|
else if(a == b) then
|
|
a = 7
|
|
elseif(a > b) then
|
|
a = 8
|
|
end if
|
|
|
|
if (a < b) then
|
|
a = 9
|
|
else if(a == b) then
|
|
a = 10
|
|
else
|
|
a = 11
|
|
end if
|
|
|
|
if (a < b) then
|
|
a = 12
|
|
else if(a == b) then
|
|
a = 13
|
|
else if(a > b) then
|
|
a = 14
|
|
end if
|
|
|
|
if (f()) then
|
|
a = 15
|
|
end if
|
|
|
|
contains
|
|
logical function f()
|
|
f = .true.
|
|
end
|
|
end
|