view gcc/testsuite/gfortran.dg/power.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 84e7813d76e9
children
line wrap: on
line source

! { dg-do run }
integer i
i = 0
if ( a (i) ** 5 .ne. 1) STOP 1
contains
function a (i)
integer a, i
i = i + 1
a = i
end function
end