repo.or.cz
/
style_checker.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix check for copyright presence in multi-line comments.
[style_checker.git]
/
regtests
/
andthennot.adb
blob
514800e8e8c8995ce04661e66343754d38a03ec0
1
2
procedure
AndThenNot
is
3
begin
4
if
Toto
and then not
5
True
6
then
7
null
;
8
end if
;
9
10
if
Toto
11
and then not
12
True
13
then
14
null
;
15
end if
;
16
17
if
Toto
18
or else not
19
True
20
then
21
null
;
22
end if
;
23
24
end
AndThenNot
;