2025-03-20 23:01:32 +00:00
|
|
|
//@ is "$.index[?(@.name=='fst')].inner.function.sig.inputs[0][0]" '"(x, _)"'
|
2022-10-14 19:57:01 +01:00
|
|
|
pub fn fst<X, Y>((x, _): (X, Y)) -> X {
|
|
|
|
|
x
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-20 23:01:32 +00:00
|
|
|
//@ is "$.index[?(@.name=='drop_int')].inner.function.sig.inputs[0][0]" '"_"'
|
2022-10-14 19:57:01 +01:00
|
|
|
pub fn drop_int(_: i32) {}
|