Enable test for #3707

This commit is contained in:
Brian Anderson 2013-05-06 18:50:21 -07:00
parent bd5fd6e42a
commit 4f436a8b85

View file

@ -8,7 +8,6 @@
// option. This file may not be copied, modified, or distributed // option. This file may not be copied, modified, or distributed
// except according to those terms. // except according to those terms.
// xfail-test
struct Obj { struct Obj {
member: uint member: uint
} }
@ -17,8 +16,8 @@ pub impl Obj {
fn boom() -> bool { fn boom() -> bool {
return 1+1 == 2 return 1+1 == 2
} }
fn chirp() { fn chirp(&self) {
self.boom(); //~ ERROR wat self.boom(); //~ ERROR `&Obj` does not implement any method in scope named `boom`
} }
} }