Commit 7b318668 by Alexandre Oliva Committed by Alexandre Oliva

* inline1.C: New test.

From-SVN: r29495
parent 03b256e4
1999-09-18 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* inline1.C: New test.
1999-08-25 Alexandre Oliva <oliva@dcc.unicamp.br> 1999-08-25 Alexandre Oliva <oliva@dcc.unicamp.br>
* thunk1.C: New test. * thunk1.C: New test.
......
// Build don't link:
// Copyright (C) 1999 Free Software Foundation
// by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
// Derived from GNU lilypond.
// crash test
struct foo {
foo();
foo(const foo&);
~foo();
};
struct bar {
foo foo_member;
bar();
bar(const bar&);
// ~bar();
};
struct baz {
void error (bar s);
};
void fail() __attribute__((noreturn));
void baz::error (bar s) {
fail();
}
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