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
PR debug/66535
[official-gcc.git]
/
gcc
/
testsuite
/
gnat.dg
/
case_null.adb
blob
4b1b30ef7ce3aee9298ec58c4fcdbfdd050866a7
1
-- { dg-do compile }
2
-- { dg-options "-gnatws" }
3
4
package body
Case_Null
is
5
procedure
P1
(
X
:
T
)
is
6
begin
7
case
X
is
8
when
S1
=>
-- { dg-error "not.*static" }
9
null
;
10
when
e
=>
11
null
;
12
when others
=>
13
null
;
14
end case
;
15
end
P1
;
16
end
Case_Null
;