mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
217 B
Rust
13 lines
217 B
Rust
// run-pass
|
|
|
|
fn main () {
|
|
let n = (1, (2, 3)).1.1;
|
|
assert_eq!(n, 3);
|
|
|
|
let n = (1, (2, (3, 4))).1.1.1;
|
|
assert_eq!(n, 4);
|
|
|
|
// This is a range expression, not nested indexing.
|
|
let _ = 0.0..1.1;
|
|
}
|