delete extra never type...

This commit is contained in:
iosmanthus 2018-12-10 10:25:56 +08:00
parent fbe6d66083
commit 3a997f6258

2
e.rs
View File

@ -1,5 +1,5 @@
#[cfg(feature = "functional")]
fn e() -> ! {
fn e() {
std::iter::repeat('e').for_each(|e| print!("{}", e))
}