repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
SemaCXX
/
pr9812.cpp
blob
2cd0bede020124726f459efe1fcfa3cbe324a349
1
// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3
int
test
(
int
,
char
**)
4
{
5
bool signed
;
// expected-error {{'bool' cannot be signed or unsigned}} expected-warning {{declaration does not declare anything}}
6
7
return
0
;
8
}
9