Skip to content

Commit 89776ae

Browse files
author
Jorge Aparicio
committed
fix fallout
1 parent ac84af2 commit 89776ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/run-pass/associated-types-binding-in-where-clause.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub trait Foo {
1616
}
1717

1818
#[derive(PartialEq)]
19-
struct Bar;
19+
pub struct Bar;
2020

2121
impl Foo for int {
2222
type A = uint;

src/test/run-pass/associated-types-eq-obj.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub trait Foo {
1515
fn boo(&self) -> <Self as Foo>::A;
1616
}
1717

18-
struct Bar;
18+
pub struct Bar;
1919

2020
impl Foo for char {
2121
type A = Bar;

src/test/run-pass/associated-types-return.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub trait Foo {
1616
}
1717

1818
#[derive(PartialEq)]
19-
struct Bar;
19+
pub struct Bar;
2020

2121
impl Foo for int {
2222
type A = uint;

0 commit comments

Comments
 (0)