Skip to content

Commit

Permalink
fix fallout
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Aparicio committed Mar 3, 2015
1 parent ac84af2 commit 89776ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -16,7 +16,7 @@ pub trait Foo {
}

#[derive(PartialEq)]
struct Bar;
pub struct Bar;

impl Foo for int {
type A = uint;
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/associated-types-eq-obj.rs
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/associated-types-return.rs
Expand Up @@ -16,7 +16,7 @@ pub trait Foo {
}

#[derive(PartialEq)]
struct Bar;
pub struct Bar;

impl Foo for int {
type A = uint;
Expand Down

0 comments on commit 89776ae

Please sign in to comment.