2023-05-22 12:17:52 -05:00
|
|
|
// @is "$.index[*][?(@.name=='fst')].inner.function.decl.inputs[0][0]" '"(x, _)"'
|
2022-10-14 13:57:01 -05:00
|
|
|
pub fn fst<X, Y>((x, _): (X, Y)) -> X {
|
|
|
|
x
|
|
|
|
}
|
|
|
|
|
2023-05-22 12:17:52 -05:00
|
|
|
// @is "$.index[*][?(@.name=='drop_int')].inner.function.decl.inputs[0][0]" '"_"'
|
2022-10-14 13:57:01 -05:00
|
|
|
pub fn drop_int(_: i32) {}
|