rustc/tests/ui/consts/issue-54387.rs
2023-08-02 10:33:26 +02:00

13 lines
147 B
Rust

// check-pass
pub struct GstRc {
_obj: *const (),
_borrowed: bool,
}
const FOO: Option<GstRc> = None;
fn main() {
let _meh = FOO;
}