diff options
| author | Caio <c410.f3r@gmail.com> | 2023-09-23 14:23:51 -0300 | 
|---|---|---|
| committer | Caio <c410.f3r@gmail.com> | 2023-09-23 14:23:51 -0300 | 
| commit | d63959f2faa0a3e1164dd42c641685de1fcad295 (patch) | |
| tree | 39c0e0815afb4f2d0c2c38a25554744498d67935 /library/std/src/lib.rs | |
| parent | 3050938abd423f9e37466cc4cd4129c9b8cc427c (diff) | |
| download | rust-d63959f2faa0a3e1164dd42c641685de1fcad295.tar.gz rust-d63959f2faa0a3e1164dd42c641685de1fcad295.zip | |
Add the `cfg_match!` macro
Diffstat (limited to 'library/std/src/lib.rs')
| -rw-r--r-- | library/std/src/lib.rs | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 5e3249655b8..f1f0f8b1653 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -665,6 +665,9 @@ pub use core::{ )] pub use core::concat_bytes; +#[unstable(feature = "cfg_match", issue = "115585")] +pub use core::cfg_match; + #[stable(feature = "core_primitive", since = "1.43.0")] pub use core::primitive; | 
