mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
14 lines
204 B
Rust
14 lines
204 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() {}
|