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][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
2004-11-27-ExceptionCleanupAssertion.cpp
blob
ebcce7796e71b008b2f72ef7e574975b0eaee68f
1
// RUN: %clang_cc1 %s -emit-llvm -o /dev/null
2
3
// This is PR421
4
5
struct
Strongbad
{
6
Strongbad
(
const char
*
str
);
7
~
Strongbad
();
8
operator
const char
*()
const
;
9
};
10
11
void
TheCheat
() {
12
Strongbad
foo
(
0
);
13
Strongbad dirs
[] = {
Strongbad
(
0
) +
1
};
14
}