diff options
| author | 1011X <1011XXXXX@gmail.com> | 2018-03-12 01:04:51 -0400 |
|---|---|---|
| committer | 1011X <1011XXXXX@gmail.com> | 2018-03-12 01:04:51 -0400 |
| commit | 8654738260e8490f678fcfb07e6abaed337a0926 (patch) | |
| tree | 32082c4ab936740d3dee8fc1a8edf3f9f2c425e9 /src/libcore | |
| parent | 39c3a370180063ea5fbce64b26e585f7e0228d53 (diff) | |
| download | rust-8654738260e8490f678fcfb07e6abaed337a0926.tar.gz rust-8654738260e8490f678fcfb07e6abaed337a0926.zip | |
include AsciiExt in tests
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/tests/ascii.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/tests/ascii.rs b/src/libcore/tests/ascii.rs index dbed5920519..4d43067ad2c 100644 --- a/src/libcore/tests/ascii.rs +++ b/src/libcore/tests/ascii.rs @@ -8,7 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use char::from_u32; +use core::char::from_u32; +use std::ascii::AsciiExt; #[test] fn test_is_ascii() { |
