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
Fix compilation failure with C++98 compilers
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
warn_conversion_2.f90
blob
d071a3c322f382212c4a2cf88613d64809206953
1
! { dg-do compile }
2
! { dg-options "-Wconversion-extra" }
3
4
real
(
8
) ::
sqrt2
5
real
x
6
7
x
=
2.0
8
sqrt2
=
sqrt
(
x
)
! { dg-warning "Conversion" }
9
10
sqrt2
=
sqrt
(
2.0
)
! { dg-warning "Conversion" }
11
end