1
2
3
4
5
6
7
8
9
10
11
12
#![feature(never_type, const_trait_impl)]
mod state;
pub use state::state::state::State;
#[allow(warnings)]
#[cfg(test)]
mod test_state {

    #[test]
    fn set_state() {
        
    }
}