Skip to main content

luaur_vm/macros/
has_feature.rs

1#[allow(non_snake_case)]
2#[macro_export]
3macro_rules! __has_feature {
4    ($x:ident) => {
5        0
6    };
7}
8
9pub use __has_feature;