mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
2903bbbc15
This commit undoes some of the previous commit's mechanical changes, based on human judgment.
5 lines
124 B
Rust
5 lines
124 B
Rust
struct DropNoMethod;
|
|
impl Drop for DropNoMethod {} //~ ERROR not all trait items implemented, missing: `drop`
|
|
|
|
fn main() {}
|