10 lines
161 B
Rust
10 lines
161 B
Rust
// gate-test-const_try
|
|
|
|
const fn t() -> Option<()> {
|
|
Some(())?;
|
|
//~^ ERROR `?` is not allowed
|
|
//~| ERROR `?` is not allowed
|
|
None
|
|
}
|
|
|
|
fn main() {}
|