view flang/test/Semantics/if_construct01.f90 @ 181:df311c476dd5

CreateIdentifierInfo in ParseCbC (not yet worked)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 31 May 2020 12:30:11 +0900
parents 0572611fdcc8
children 2e18cbf3894f
line wrap: on
line source

! 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