Skip to content

Commit 46ddd51

Browse files
committed
---
yaml --- r: 89218 b: refs/heads/snap-stage3 c: aca1749 h: refs/heads/master v: v3
1 parent 856cb41 commit 46ddd51

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: deeca5d586bfaa4aa60246f671a8d611d38f6248
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 0daaeab244a583b6bb5b88c41ad0fdd51388619d
4+
refs/heads/snap-stage3: aca1749493438d7f6283a214aa0d8230166cfa21
55
refs/heads/try: b160761e35efcd1207112b3b782c06633cf441a8
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/libstd/io/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Some examples of obvious things you might want to do
5353
# let _g = ::std::io::ignore_io_error();
5454
let mut file = File::create(&Path::new("message.txt"));
5555
file.write(bytes!("hello, file!\n"));
56+
# drop(file);
57+
# ::std::io::fs::unlink(&Path::new("message.txt"));
5658
```
5759
5860
* Iterate over the lines of a file

branches/snap-stage3/src/test/compile-fail/lint-missing-doc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ pub trait A {
5050
/// dox
5151
fn foo_with_impl() {}
5252
}
53+
#[allow(missing_doc)]
5354
trait B {
5455
fn foo();
5556
fn foo_with_impl() {}

0 commit comments

Comments
 (0)