1
Fork 0

Fix trait-inheritance-overloading-xc and un-xfail

This commit is contained in:
Tim Chevalier 2012-12-14 15:25:13 -08:00
parent 0b3cc15a00
commit 3a5b6a79c6
2 changed files with 1 additions and 2 deletions

View file

@ -10,7 +10,7 @@
use cmp::Eq; use cmp::Eq;
pub trait MyNum : Add<self,self>, Sub<self,self>, Mul<self,self>, Eq { pub trait MyNum : Add<self,self> Sub<self,self> Mul<self,self> Eq {
} }
pub struct MyInt { pub struct MyInt {

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
// xfail-fast - check-fast doesn't understand aux-build // xfail-fast - check-fast doesn't understand aux-build
// aux-build:trait_inheritance_overloading_xc.rs // aux-build:trait_inheritance_overloading_xc.rs