mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 08:51:17 +00:00
14 lines
203 B
Rust
14 lines
203 B
Rust
// build-pass (FIXME(62277): could be check-pass?)
|
|
#![allow(dead_code)]
|
|
struct A;
|
|
impl Drop for A {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
const FOO: Option<A> = None;
|
|
|
|
const BAR: () = (FOO, ()).1;
|
|
|
|
|
|
fn main() {}
|