blob: 34140c7a1fc651164dc1c0289f0a51bfebcbdcf5 [file] [log] [blame]
// rustfmt-newline_style: Windows
#[macro_export]
macro_rules! hmmm___ffi_error {
($result:ident) => {
pub struct $result {
success: bool,
}
impl $result {
pub fn foo(self) {}
}
};
}