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
hppa64: Fix fmt_f_default_field_width_3.f90 and fmt_g_default_field_width_3.f90
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
initialization_20.f90
blob
6af1a00a45d61b7758108ee16a046eb47220e6b9
1
! { dg-do compile }
2
! Test for PR19925
3
!
4
program
pr19925
5
implicit none
6
integer
j
7
integer
,
parameter
::
n
=
100000
8
integer
,
parameter
::
i
(
n
)=(/(
j
,
j
=
1
,
n
)/)
! { dg-error "number of elements" }
9
print
*,
i
(
5
)
! { dg-error "has no IMPLICIT type" }
10
end program
pr19925