dot_hide
use ;
use constructor;
use info;
extern "C"
use aok::{Result, OK};
use static_init::constructor;
use tracing::info;
#[constructor(0)]
extern "C" fn init() {
loginit::init()
}
#[test]
fn test() -> Result<()> {
info!("{}", 123456);
OK
}