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
/
pr39666-1.f90
blob
31840ec1df822f0482a5485b8f8e4a7cee7220db
1
! PR middle-end/39666
2
! { dg-do compile }
3
! { dg-options "-O2 -Wuninitialized" }
4
5
FUNCTION
f
(
n
)
6
INTEGER
,
INTENT
(
in
) ::
n
7
REAL
::
f
8
9
SELECT
CASE
(
n
)
10
CASE
(:-
1
);
f
= -
1.0
11
CASE
(
0
);
f
=
0.0
12
CASE
(
1
:);
f
=
1.0
13
END
SELECT
14
END FUNCTION