repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
do_concurrent_3.f90
blob
09bb0cce722181a353204e3095fc80e7acb8d66f
1
! { dg-do compile }
2
! PR 56519 - flag impure intrinsic subroutine calls
3
! within DO CONCURRENT
4
program
main
5
implicit none
6
integer
::
i
7
real
::
array
(
123
),
val
8
9
do
concurrent
(
i
=
1
:
123
)
10
call
random_number
(
val
)
! { dg-error "is not PURE" }
11
array
(
i
) =
val
12
end do
13
end program
main