mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 14:10:03 +03:00
10 lines
168 B
Rust
10 lines
168 B
Rust
//@ check-pass
|
|
|
|
#![deny(dead_code, unfulfilled_lint_expectations, reason = "example")]
|
|
#![expect(dead_code, reason = "example")]
|
|
|
|
struct Foo;
|
|
impl Foo {}
|
|
|
|
fn main() {}
|