mirror of
https://github.com/tokio-rs/tracing.git
synced 2025-10-02 15:24:47 +00:00
11 lines
189 B
Rust
11 lines
189 B
Rust
use tracing_attributes::instrument;
|
|
|
|
#[deny(unfulfilled_lint_expectations)]
|
|
#[expect(dead_code)]
|
|
#[instrument]
|
|
fn unused() {}
|
|
|
|
#[expect(dead_code)]
|
|
#[instrument]
|
|
async fn unused_async() {}
|