| Crates.io | respan |
| lib.rs | respan |
| version | 0.1.6 |
| created_at | 2022-11-30 23:53:35.038734+00 |
| updated_at | 2025-03-03 23:57:03.177151+00 |
| description | Macros to erase scope information from tokens |
| homepage | |
| repository | https://github.com/dtolnay/respan |
| max_upload_size | |
| id | 727164 |
| size | 18,073 |
Macros to erase scope information from tokens.
#![forbid(unsafe_code)]
fn main() {
let ptr = 1337 as *const i32;
let value = respan::call_site! {
unsafe { *ptr }
};
println!("{}", value);
}