1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
use std::marker::Unpin;

/// This crate is your dream crate
/// contact me if you want to use it
pub trait Pun: Unpin {}


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        let _x: usize = 1;
    }
}