blob: 29b44b6438631ce14e6103365746a7e430963ceb [file]
//@ run-pass
// Regression test for the const-eval reproducer in rust-lang/rust#156313.
#![feature(reborrow)]
#![allow(dead_code)]
#![allow(unused_variables)]
use std::marker::{CoerceShared, Reborrow};
pub struct MyMut<'a>(&'a u8);
impl Reborrow for MyMut<'_> {}
#[derive(Clone, Copy)]
pub struct MyRef<'a>(&'a u8);
impl<'a> CoerceShared<MyRef<'a>> for MyMut<'a> {}
const fn consteval_reproducer() {
let value = 1;
foo(MyMut(&value));
}
const fn foo(x: MyRef<'_>) {}
fn main() {
const { consteval_reproducer(); }
}