File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed
src/test/run-make-fulldeps Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1- #![ crate_name = "test" ]
1+ #![ crate_name = "test" ]
22#![ feature( box_syntax) ]
33#![ feature( rustc_private) ]
44
5+ #![ allow( unused_must_use) ]
6+
57extern crate graphviz;
68// A simple rust project
79
Original file line number Diff line number Diff line change 1- #![ crate_name = "krate2" ]
2- #![ crate_type = "lib" ]
1+ #![ crate_name = "krate2" ]
2+ #![ crate_type = "lib" ]
33
44use std:: io:: Write ;
55
66pub fn hello ( ) {
7- std:: io:: stdout ( ) . write_all ( b"hello world!\n " ) ;
7+ let _ = std:: io:: stdout ( ) . write_all ( b"hello world!\n " ) ;
88}
Original file line number Diff line number Diff line change 1- #![ crate_name = "test" ]
1+ #![ crate_name = "test" ]
22#![ feature( box_syntax) ]
33#![ feature( rustc_private) ]
44#![ feature( associated_type_defaults) ]
55#![ feature( external_doc) ]
66
7+ #![ allow( unused_must_use) ]
8+
79extern crate graphviz;
810// A simple rust project
911
Original file line number Diff line number Diff line change 44use std:: io:: Write ;
55
66pub fn hello ( ) {
7- std:: io:: stdout ( ) . write_all ( b"hello world!\n " ) ;
7+ let _ = std:: io:: stdout ( ) . write_all ( b"hello world!\n " ) ;
88}
You can’t perform that action at this time.
0 commit comments