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
2010-12-20 Tobias Burnus <burnus@net-b.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gfortran.dg
/
Wall.f90
blob
a11c4b7fd15f8691991f707ffcd196250005a043
1
! { dg-do run }
2
! { dg-options -Wall }
3
! PR 30437 Test for Wall
4
program
main
5
character
(
len
=
40
) &
6
c
7
c
=
"Hello, &
8
world!"
! { dg-warning "Warning: Missing '&' in continued character constant" }
9
if
(
c
.
ne
.&
10
"Hello, world!"
)&
11
call
abort
();
end program
main
12