Commit 233363cb by Alexandre Oliva Committed by Alexandre Oliva

throw2.C: New test.

	* g++.old-deja/g++.eh/throw2.C: New test.  CV-qualifiers are not
 	properly discarded.

From-SVN: r23666
parent 411efd21
1998-11-16 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.eh/throw2.C: New test. CV-qualifiers are not
properly discarded.
1998-11-07 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
* README: New file, general information about the testsuite and
......
// Build don't link:
// Submitted by Sebastian Ritterbusch <uabp@rz.uni-karlsruhe.de>
#define ANY int // a class with a public constructor
void athrow(const ANY & e) throw(ANY)
{
throw e; // gets bogus error - discarding const - XFAIL *-*-*
}
int main(void)
{
athrow(ANY());
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