Skip to main content

luaur_vm/macros/
condhardstacktests.rs

1//! Source: `VM/src/lstate.h` — no-op unless HARDSTACKTESTS (off in default builds)
2#[allow(non_snake_case)]
3#[macro_export]
4macro_rules! condhardstacktests {
5    ($x:expr) => {
6        ()
7    };
8}
9pub use condhardstacktests;