rust/tests/ui/consts/const-validation-fail-55455.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
184 B
Rust
Raw Normal View History

// https://github.com/rust-lang/rust/issues/55454
//@ build-pass (FIXME(62277): could be check-pass?)
struct This<T>(T);
const C: This<Option<&i32>> = This(Some(&1));
fn main() {
}