2021-12-03 00:03:32 +00:00
|
|
|
#![cfg(feature = "macros")]
|
|
|
|
|
2021-07-30 23:21:13 +00:00
|
|
|
//! Functionality which is not only not supported on MSRV,
|
|
|
|
//! but can't even be cfg-ed out on MSRV because the compiler doesn't support
|
|
|
|
//! the syntax.
|
|
|
|
|
2021-11-18 11:38:47 +00:00
|
|
|
#[rustversion::since(1.54)]
|
2021-07-30 23:21:13 +00:00
|
|
|
mod requires_1_54 {
|
2021-12-03 00:03:32 +00:00
|
|
|
|
2021-07-30 23:21:13 +00:00
|
|
|
include!("not_msrv/requires_1_54.rs");
|
|
|
|
}
|