mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 06:23:00 +00:00
11 lines
125 B
Rust
11 lines
125 B
Rust
//@ check-pass
|
|
#![allow(dead_code)]
|
|
struct A;
|
|
impl Drop for A {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
const FOO: A = A;
|
|
|
|
fn main() {}
|