]> git.lizzy.rs Git - rust.git/commitdiff
fix fallout
authorJorge Aparicio <japaricious@gmail.com>
Tue, 3 Mar 2015 05:25:14 +0000 (00:25 -0500)
committerJorge Aparicio <japaricious@gmail.com>
Tue, 3 Mar 2015 06:28:23 +0000 (01:28 -0500)
src/test/run-pass/associated-types-binding-in-where-clause.rs
src/test/run-pass/associated-types-eq-obj.rs
src/test/run-pass/associated-types-return.rs

index 2f9a0b328b5d492146d76adb077dd3e8585d97db..c6c66f1c75c5432d477fdf980389b348a4bf38e4 100644 (file)
@@ -16,7 +16,7 @@ pub trait Foo {
 }
 
 #[derive(PartialEq)]
-struct Bar;
+pub struct Bar;
 
 impl Foo for int {
     type A = uint;
index 0ec8a3661906f7aaee7806a151ba4718339eb7da..901b3c0d96b010c78b50cd1c8f6ddfc797968722 100644 (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;
index fe24ab6bbeb1b453a21c8ac791820c2f10aeac7f..8ae550be3fc6672dfe1ee51acc5df4a7cd33d733 100644 (file)
@@ -16,7 +16,7 @@ pub trait Foo {
 }
 
 #[derive(PartialEq)]
-struct Bar;
+pub struct Bar;
 
 impl Foo for int {
     type A = uint;