Commit 72404d45 by Jason Merrill

new

From-SVN: r18870
parent d3a85927
struct A {
A operator+ (int) const { return *this; }
};
A operator+ (A, float);
main ()
{
A a;
a + 1;
}
struct foo {};
typedef long unsigned int & (foo::*pmf)(void);
void fn (...) {}
int main ()
{
pmf y = 0;
fn (y);
}
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