Method overriding tests suddenly pass valgrind for some reason.

I'm not sure if this is because of changes to glue generation in the
last few days while I've been working on other things, or if it's a
side effect of the improvements I made to typechecking for anonymous
objects, or something else, but I guess I'll take it!

Closes issue #543.
This commit is contained in:
Lindsey Kuper 2011-07-20 12:43:57 -07:00
parent 94f2a7b9a7
commit 7a919da04e
2 changed files with 1 additions and 5 deletions

View File

@ -1,6 +1,4 @@
//xfail-stage0
//xfail-stage1
//xfail-stage2
// Reduced test case for issue #543.
fn main() {

View File

@ -1,6 +1,5 @@
//xfail-stage0
//xfail-stage1
//xfail-stage2
use std;
fn main() {
@ -25,7 +24,6 @@ fn main() {
with my_a
};
// FIXME: raises a valgrind error (issue #543).
assert (my_b.foo() == 3);
assert (my_b.bar() == 3);
}