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
/
intrinsic_numeric_arg.f
blob
445c39ef297960a4c23d1955f267ad9ec23fd475
1
!
this test checks
for
a non
-
numeric argument
to
an
2
!
intrinsic
function
(
of which ABS
()
is one of many
).
3
! {
dg
-
do
compile
}
4
LOGICAL
Z
5
CHARACTER
A
6
REAL
R
7
R
=
ABS
(
Z
) ! {
dg
-
error
" must have a numeric type"
}
8
R
=
ABS
(
A
) ! {
dg
-
error
" must have a numeric type"
}
9
END