diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-11-25 17:05:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-25 17:05:03 +0100 |
| commit | 6398df1520638c68bb75daa33d64c75387c26b1f (patch) | |
| tree | 1408ff0aafcbd3ef385353f2ee61048b6dd242d2 /src/test | |
| parent | 45e5a856a6551ae1b77fe8c5585e80f886b44b6e (diff) | |
| parent | ebb1a48b415c1b586bb652d58f3d2078d87f44dd (diff) | |
| download | rust-6398df1520638c68bb75daa33d64c75387c26b1f.tar.gz rust-6398df1520638c68bb75daa33d64c75387c26b1f.zip | |
Rollup merge of #56101 - frewsxcv:frewsxcv-dyn, r=steveklabnik
Incorporate `dyn` into more comments and docs. r? @rust-lang/docs
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/string-box-error.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/run-pass/string-box-error.rs b/src/test/run-pass/string-box-error.rs index a80d9a05935..5d8a664b93d 100644 --- a/src/test/run-pass/string-box-error.rs +++ b/src/test/run-pass/string-box-error.rs @@ -8,7 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// Ensure that both `Box<Error + Send + Sync>` and `Box<Error>` can be obtained from `String`. +// Ensure that both `Box<dyn Error + Send + Sync>` and `Box<dyn Error>` can be +// obtained from `String`. use std::error::Error; |
