use crate::compsys::ported::_message::_message;
pub fn _nothing() -> i32 {
let _fn_scope = crate::compsys::ported::shared::FnScope::enter("_nothing");
_message(&["no argument or option".to_string()])
}
#[cfg(test)]
mod tests {
use super::*;
use crate::ported::zle::complete::INCOMPFUNC;
use std::sync::atomic::Ordering;
#[test]
fn returns_message_status() {
let _g = crate::test_util::global_state_lock();
INCOMPFUNC.store(1, Ordering::Relaxed);
let _r = _nothing();
INCOMPFUNC.store(0, Ordering::Relaxed);
}
}