pyo3/tests/test_not_msrv.rs

12 lines
277 B
Rust
Raw Normal View History

2021-12-03 00:03:32 +00:00
#![cfg(feature = "macros")]
//! 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)]
mod requires_1_54 {
2021-12-03 00:03:32 +00:00
include!("not_msrv/requires_1_54.rs");
}