File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -16,5 +16,4 @@ fn test_send<S: Send>() {}
16
16
17
17
pub fn main ( ) {
18
18
test_send :: < rand:: ThreadRng > ( ) ;
19
- //~^ ERROR : std::marker::Send` is not satisfied
20
19
}
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ use use_from_trait_xc::Trait::Assoc;
21
21
use use_from_trait_xc:: Trait :: CONST ;
22
22
//~^ ERROR `CONST` is not directly importable
23
23
24
- use use_from_trait_xc:: Foo :: new;
24
+ use use_from_trait_xc:: Foo :: new; //~ ERROR struct `Foo` is private
25
25
//~^ ERROR unresolved import `use_from_trait_xc::Foo::new`
26
26
27
- use use_from_trait_xc:: Foo :: C ;
27
+ use use_from_trait_xc:: Foo :: C ; //~ ERROR struct `Foo` is private
28
28
//~^ ERROR unresolved import `use_from_trait_xc::Foo::C`
29
29
30
30
use use_from_trait_xc:: Bar :: new as bnew;
You can’t perform that action at this time.
0 commit comments