We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcf78bb commit 2f4dd6eCopy full SHA for 2f4dd6e
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
@@ -11,6 +11,7 @@
11
#![feature(async_iter_from_iter)]
12
#![feature(async_iterator)]
13
#![feature(bigint_helper_methods)]
14
+#![feature(bstr)]
15
#![feature(cell_update)]
16
#![feature(clone_to_uninit)]
17
#![feature(const_black_box)]
@@ -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