File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: deeca5d586bfaa4aa60246f671a8d611d38f6248
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
- refs/heads/snap-stage3: 0daaeab244a583b6bb5b88c41ad0fdd51388619d
4
+ refs/heads/snap-stage3: aca1749493438d7f6283a214aa0d8230166cfa21
5
5
refs/heads/try: b160761e35efcd1207112b3b782c06633cf441a8
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
Original file line number Diff line number Diff line change @@ -53,6 +53,8 @@ Some examples of obvious things you might want to do
53
53
# let _g = ::std::io::ignore_io_error();
54
54
let mut file = File::create(&Path::new("message.txt"));
55
55
file.write(bytes!("hello, file!\n"));
56
+ # drop(file);
57
+ # ::std::io::fs::unlink(&Path::new("message.txt"));
56
58
```
57
59
58
60
* Iterate over the lines of a file
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ pub trait A {
50
50
/// dox
51
51
fn foo_with_impl ( ) { }
52
52
}
53
+ #[ allow( missing_doc) ]
53
54
trait B {
54
55
fn foo ( ) ;
55
56
fn foo_with_impl ( ) { }
You can’t perform that action at this time.
0 commit comments