blob: 1b6fa1afab9fa356c6004c973235d729a634fac6 [file] [log] [blame]
//@ check-pass
//@ compile-flags: -Znext-solver
// Regression test for #69615.
#![feature(const_trait_impl)]
#![feature(const_try)]
#[const_trait]
pub trait MyTrait {
fn method(&self) -> Option<()>;
}
impl const MyTrait for () {
fn method(&self) -> Option<()> {
Some(())?;
None
}
}
fn main() {}