We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf78bb commit c640bc5Copy full SHA for c640bc5
library/coretests/tests/bstr.rs
@@ -1,6 +1,4 @@
1
-#![feature(bstr)]
2
-
3
-use core::ByteStr;
+use core::bstr::ByteStr;
4
5
#[test]
6
fn test_debug() {
library/coretests/tests/lib.rs
@@ -10,6 +10,7 @@
10
#![feature(ascii_char_variants)]
11
#![feature(async_iter_from_iter)]
12
#![feature(async_iterator)]
13
+#![feature(bstr)]
14
#![feature(bigint_helper_methods)]
15
#![feature(cell_update)]
16
#![feature(clone_to_uninit)]
@@ -139,6 +140,7 @@ mod asserting;
139
140
mod async_iter;
141
mod atomic;
142
mod bool;
143
+mod bstr;
144
mod cell;
145
mod char;
146
mod clone;
0 commit comments