about summary refs log tree commit diff
path: root/src/libstd_unicode/tests/lib.rs
diff options
context:
space:
mode:
authorStepan Koltsov <stepan.koltsov@gmail.com>2017-06-12 20:07:54 +0300
committerStepan Koltsov <stepan.koltsov@gmail.com>2017-06-15 20:42:35 +0100
commitea149b8571d538fc8bb2117e46161d442aef48a4 (patch)
tree3ba3ef157bf2a05918fc5b6f108cd54cf3e24199 /src/libstd_unicode/tests/lib.rs
parent258ae6dd9b1a8ac97986852fc9f00f7687004ccb (diff)
downloadrust-ea149b8571d538fc8bb2117e46161d442aef48a4.tar.gz
rust-ea149b8571d538fc8bb2117e46161d442aef48a4.zip
Utf8Lossy type with chunks iterator and impl Display and Debug
Diffstat (limited to 'src/libstd_unicode/tests/lib.rs')
-rw-r--r--src/libstd_unicode/tests/lib.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libstd_unicode/tests/lib.rs b/src/libstd_unicode/tests/lib.rs
new file mode 100644
index 00000000000..9535ec18763
--- /dev/null
+++ b/src/libstd_unicode/tests/lib.rs
@@ -0,0 +1,15 @@
+// Copyright 2012-2017 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+#![feature(str_internals, unicode)]
+
+extern crate std_unicode;
+
+mod lossy;