We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e171f7 commit 332b748Copy full SHA for 332b748
test/intrinsics/test_intrinsics.fypp
@@ -44,7 +44,7 @@ subroutine test_sum(error)
44
x(i) = 8*atan(1._${k1}$)*(real(i,kind=${k1}$)-0.5_${k1}$)/real(n,kind=${k1}$)**2
45
end do
46
allocate(mask(n),source=.false.); mask(1:n:2) = .true.
47
- allocate(nmask(n), source = .not.mask(1:n))
+ allocate(nmask(n)); nmask = .not.mask
48
! scramble array
49
do i = 1, n
50
call random_number(u)
@@ -86,7 +86,7 @@ subroutine test_sum(error)
86
87
88
89
90
91
92
0 commit comments