Commit 409666f7 by Jason Merrill

new

From-SVN: r23118
parent 0f8766b8
......@@ -4,8 +4,6 @@
// submitted by Gerald Gutierrez <gutier@intergate.bc.ca>
// excess errors test - XFAIL *-*-*
namespace A { void main () { } }
namespace B { void main () { } }
namespace C {
......
// Test to make sure that the use of __typeof__ in WIFEXITED works.
int main ()
{
int stat_loc = 0;
(__extension__
({
union
{
__typeof__ (stat_loc) __in;
int __i;
} __u;
__u.__in = (stat_loc);
__u.__i;
})
);
}
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