Skip to content

Commit 42b8c14

Browse files
committed
---
yaml --- r: 147834 b: refs/heads/try2 c: aca1749 h: refs/heads/master v: v3
1 parent 0411e3d commit 42b8c14

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
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 0daaeab244a583b6bb5b88c41ad0fdd51388619d
8+
refs/heads/try2: aca1749493438d7f6283a214aa0d8230166cfa21
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/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/try2/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)