Closed
Description
Code:
pub fn rust_function(x: ((i32, i32), i32)) -> i32 { x.0.0 }
Output:
(...)
help: try parenthesizing the first index
| pub fn rust_function(x: ((i32, i32), i32)) -> i32 { x.(x.0).0 }
(...)
Expected:
(...)
help: try parenthesizing the first index
| pub fn rust_function(x: ((i32, i32), i32)) -> i32 { (x.0).0 }
(...)