2025-03-05 04:46:14 +00:00
|
|
|
#![no_std]
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='example')].attrs[*].must_use.reason" null
|
2025-03-05 04:46:14 +00:00
|
|
|
#[must_use]
|
|
|
|
|
pub fn example() -> impl Iterator<Item = i64> {}
|
|
|
|
|
|
2025-06-20 02:48:15 +00:00
|
|
|
//@ is "$.index[?(@.name=='explicit_message')].attrs[*].must_use.reason" '"does nothing if you do not use it"'
|
2025-03-05 04:46:14 +00:00
|
|
|
#[must_use = "does nothing if you do not use it"]
|
|
|
|
|
pub fn explicit_message() -> impl Iterator<Item = i64> {}
|