fix println message in tests

This commit is contained in:
Oliver Schneider 2017-01-31 11:19:49 +01:00
parent d9ec55e695
commit 19f119caec
1 changed files with 2 additions and 2 deletions

View File

@ -271,8 +271,8 @@ fn overlapping() {
} }
match 42 { match 42 {
0 .. 11 => println!("0 ... 10"), //~ERROR: some ranges overlap 0 .. 11 => println!("0 .. 11"), //~ERROR: some ranges overlap
0 ... 11 => println!("0 ... 10"), //~NOTE overlaps with this 0 ... 11 => println!("0 ... 11"), //~NOTE overlaps with this
_ => (), _ => (),
} }