blob: c2f41c1850ad32d87e79e3b8edd87a72fef1fbfb [file] [log] [blame] [edit]
// 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() {
}