fix fallout

This commit is contained in:
Jorge Aparicio 2015-03-03 00:25:14 -05:00
parent ac84af24db
commit 89776aee49
3 changed files with 3 additions and 3 deletions

View file

@ -16,7 +16,7 @@ pub trait Foo {
}
#[derive(PartialEq)]
struct Bar;
pub struct Bar;
impl Foo for int {
type A = uint;

View file

@ -15,7 +15,7 @@ pub trait Foo {
fn boo(&self) -> <Self as Foo>::A;
}
struct Bar;
pub struct Bar;
impl Foo for char {
type A = Bar;

View file

@ -16,7 +16,7 @@ pub trait Foo {
}
#[derive(PartialEq)]
struct Bar;
pub struct Bar;
impl Foo for int {
type A = uint;