mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
Merge pull request #561 from notmatt/mbs-fixups
This commit is contained in:
commit
f38f42f17d
1 changed files with 2 additions and 2 deletions
|
@ -8,9 +8,9 @@
|
|||
#[test]
|
||||
fn indexing_tuple() {
|
||||
let numbers = (1, 2, 3);
|
||||
/// Replace below ??? with the tuple indexing syntax.
|
||||
// Replace below ??? with the tuple indexing syntax.
|
||||
let second = ???;
|
||||
|
||||
assert_eq!(2, second
|
||||
assert_eq!(2, second,
|
||||
"This is not the 2nd number in the tuple!")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue