Merge pull request #561 from notmatt/mbs-fixups

pull/568/head^2
fmoko 4 years ago committed by GitHub
commit f38f42f17d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save