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