For tuples, go-to definition search on either one of the tuple usage results in both first and second definitions being reported.
Contract Test() {
fn test() -> () {
let (first, second) = someOtherFunction()
function(
first, // run 'go to definition' on this
second // or this, both result in both tuple definitions being reported
)
}
}
For tuples, go-to definition search on either one of the tuple usage results in both
first
andsecond
definitions being reported.