about summary refs log tree commit diff
path: root/tests/ui/consts/const-try-feature-gate.rs
blob: 4a98185a18a7fe8c7c22072ce5ec2183abfa5746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// gate-test-const_try

const fn t() -> Option<()> {
    Some(())?;
    //~^ ERROR `?` is not allowed
    //~| ERROR `?` is not allowed
    //~| ERROR `Try` is not yet stable as a const trait
    //~| ERROR `FromResidual` is not yet stable as a const trait
    None
}

fn main() {}