fix println message in tests
This commit is contained in:
parent
d9ec55e695
commit
19f119caec
1 changed files with 2 additions and 2 deletions
|
|
@ -271,8 +271,8 @@ fn overlapping() {
|
|||
}
|
||||
|
||||
match 42 {
|
||||
0 .. 11 => println!("0 ... 10"), //~ERROR: some ranges overlap
|
||||
0 ... 11 => println!("0 ... 10"), //~NOTE overlaps with this
|
||||
0 .. 11 => println!("0 .. 11"), //~ERROR: some ranges overlap
|
||||
0 ... 11 => println!("0 ... 11"), //~NOTE overlaps with this
|
||||
_ => (),
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue