diff options
| author | Simon Sapin <simon.sapin@exyr.org> | 2014-07-18 14:53:29 +0100 |
|---|---|---|
| committer | Simon Sapin <simon.sapin@exyr.org> | 2014-07-29 23:59:19 +0100 |
| commit | b86574bfff69124397e1a1bdf42a47053beb3aff (patch) | |
| tree | 00a71fab73597e0193684cab58f86e02e031f4a6 /src/test | |
| parent | ee8365ad81115d79e1a33ef0c034c4a74cf01819 (diff) | |
| download | rust-b86574bfff69124397e1a1bdf42a47053beb3aff.tar.gz rust-b86574bfff69124397e1a1bdf42a47053beb3aff.zip | |
Rename the std::ascii::{Owned,}StrAsciiExt traits to {Owned,}AsciiExt
… and implement them on Vec<u8> / &[u8]. [breaking-change]
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/issue-10683.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-10683.rs b/src/test/run-pass/issue-10683.rs index 934adc07e2f..df4342bfeb5 100644 --- a/src/test/run-pass/issue-10683.rs +++ b/src/test/run-pass/issue-10683.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use std::ascii::StrAsciiExt; +use std::ascii::AsciiExt; static NAME: &'static str = "hello world"; |
