1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

new testcase that crashes the C++ frontend, found by John

llvm-svn: 8655
This commit is contained in:
Chris Lattner 2003-09-22 18:27:20 +00:00
parent be3b73177f
commit a49eeeece4

View File

@ -0,0 +1,9 @@
struct duration {
duration operator/=(int c) {
return *this;
}
};
void a000090() {
duration() /= 1;
}