projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge pull request #42 from zdyxry/master
[rust-101.git]
/
dup-unimpl.sed
1
/^\s*unimplemented!()$/ { # if the current line is an "unimplemented!()"
2
: isunimp
3
N; # load next line
4
/\n\s*unimplemented!()$/ { # see if that one is also "unimplemented!()"
5
D; # delete first line, keep all the rest
6
b isunimp
7
}
8
}