2021-07-18 01:34:50 +00:00
|
|
|
// gate-test-const_try
|
|
|
|
|
|
|
|
const fn t() -> Option<()> {
|
|
|
|
Some(())?;
|
|
|
|
//~^ error: `?` is not allowed in a `const fn`
|
2024-02-01 22:45:00 +00:00
|
|
|
//~| ERROR: cannot convert
|
|
|
|
//~| ERROR: cannot determine
|
2021-07-18 01:34:50 +00:00
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|