Add failing test case

This commit is contained in:
Dániel Buga 2021-01-22 23:15:38 +01:00
parent e0f2e1560f
commit 789efede82

View File

@ -271,6 +271,34 @@ fn main() {
);
}
#[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(