Merge pull request #364 from ghost/eeeeeeeeeeeeeeeeeeeeeeee

just in case.. add testing to rust implementation
This commit is contained in:
LinuxMercedes 2018-12-11 14:54:47 -06:00 committed by GitHub
commit 43eae4acd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
e.rs
View File

@ -12,3 +12,15 @@ fn e() -> ! {
print!("e");
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn teeeeest() {
e();
unreachable!("eeeeeeeeee?????");
}
}