diff options
| author | Jonas Schievink <jonasschievink@gmail.com> | 2020-09-06 16:00:28 +0200 |
|---|---|---|
| committer | Jonas Schievink <jonasschievink@gmail.com> | 2020-09-06 16:00:28 +0200 |
| commit | 24dc182f2013cf53c23120ae1a09d256c8c98fa8 (patch) | |
| tree | 97bcd19f1991b6cc4e0a3c3d13ff27cfa3867dc4 | |
| parent | 23e49ddafbe6765d117d3c7e2485d7ac73d9d79e (diff) | |
| download | rust-24dc182f2013cf53c23120ae1a09d256c8c98fa8.tar.gz rust-24dc182f2013cf53c23120ae1a09d256c8c98fa8.zip | |
Remove unneeded `#[cfg(not(test))]` from libcore
| -rw-r--r-- | library/core/src/lib.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/library/core/src/lib.rs b/library/core/src/lib.rs index aef82a5aec5..29bbf062f22 100644 --- a/library/core/src/lib.rs +++ b/library/core/src/lib.rs @@ -220,52 +220,41 @@ pub mod ptr; /* Core language traits */ pub mod borrow; -#[cfg(not(test))] // See #65860 pub mod clone; -#[cfg(not(test))] // See #65860 pub mod cmp; pub mod convert; -#[cfg(not(test))] // See #65860 pub mod default; -#[cfg(not(test))] // See #65860 pub mod marker; pub mod ops; /* Core types and methods on primitives */ pub mod any; -#[cfg(not(test))] // See #65860 pub mod array; pub mod ascii; pub mod cell; pub mod char; pub mod ffi; -#[cfg(not(test))] // See #65860 pub mod iter; #[unstable(feature = "once_cell", issue = "74465")] pub mod lazy; pub mod option; pub mod panic; pub mod panicking; -#[cfg(not(test))] // See #65860 pub mod pin; pub mod raw; pub mod result; pub mod sync; -#[cfg(not(test))] // See #65860 pub mod fmt; -#[cfg(not(test))] // See #65860 pub mod hash; pub mod slice; -#[cfg(not(test))] // See #65860 pub mod str; pub mod time; pub mod unicode; /* Async */ -#[cfg(not(test))] // See #65860 pub mod future; pub mod task; |
