Commit 2d4b533d by Klaus-Georg Adams Committed by Robert Lipe

New tests from Klaus-Georg.

From-SVN: r20818
parent a6fa6420
// Build don't link
// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// Reported against EGCS snaps 98/06/28.
// Special g++ Options: -O -Wall -fgcse -frerun-loop-opt
//
// Compilation of this program with the flags g++ -Wall -O -fgcse -frerun-loop-opt
// or -O2 produces spurious warnings in the standard header <std/bastring.h>.
//
// They vanish if the declaration of a::b is taken out.
#include <string>
string foo();
struct a {
void bar();
enum b { c, d };
b theb;
string baz;
};
void
a::bar()
{
baz += foo() + foo();
baz += foo() + foo() + "foo";
}
// Build don't link
// Gives ICE 109
// From: Klaus-Georg Adams <Klaus-Georg.Adams@chemie.uni-karlsruhe.de>
// Reported against EGCS snaps 98/06/28.
int main()
{
try {
}
catch (bad_alloc) { // ERROR - parse error
return 1;
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment