mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
192 B
Rust
15 lines
192 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
#![allow(unused_variables)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
enum Foo { }
|
|
|
|
impl Drop for Foo {
|
|
fn drop(&mut self) { }
|
|
}
|
|
|
|
fn foo(x: Foo) { }
|
|
|
|
fn main() { }
|