diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-03-26 13:30:33 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-03-26 13:53:52 -0700 |
| commit | 3752958e4029e9d9cfb1ff020e92142b53fb810f (patch) | |
| tree | d87fa6b5d90a8df3b9be713860800963ec5982c4 /src/libstd/io | |
| parent | 557d4346a26266d2eb13f6b0adf106b8873b0da1 (diff) | |
| download | rust-3752958e4029e9d9cfb1ff020e92142b53fb810f.tar.gz rust-3752958e4029e9d9cfb1ff020e92142b53fb810f.zip | |
syntax: Remove support for #[should_fail]
This attribute has been deprecated in favor of #[should_panic]. This also updates rustdoc to no longer accept the `should_fail` directive and instead renames it to `should_panic`.
Diffstat (limited to 'src/libstd/io')
| -rw-r--r-- | src/libstd/io/buffered.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/buffered.rs b/src/libstd/io/buffered.rs index 2a1294f23b2..23cbe79145a 100644 --- a/src/libstd/io/buffered.rs +++ b/src/libstd/io/buffered.rs @@ -681,7 +681,7 @@ mod tests { } #[test] - #[should_fail] + #[should_panic] fn dont_panic_in_drop_on_panicked_flush() { struct FailFlushWriter; |
