7405: fill_match_arms: don't duplicate Ident-like arms r=matklad a=bugadani



Co-authored-by: Dániel Buga <bugadani@gmail.com>
This commit is contained in:
bors[bot] 2021-01-26 13:57:10 +00:00 committed by GitHub
commit 2664aee8e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -271,6 +271,34 @@ mod tests {
);
}
#[test]
fn partial_fill_option() {
check_assist(
fill_match_arms,
r#"
enum Option<T> { Some(T), None }
use Option::*;
fn main() {
match None$0 {
None => {}
}
}
"#,
r#"
enum Option<T> { Some(T), None }
use Option::*;
fn main() {
match None {
None => {}
Some(${0:_}) => {}
}
}
"#,
);
}
#[test]
fn partial_fill_or_pat() {
check_assist(