mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 02:31:20 +00:00
11 lines
161 B
Rust
11 lines
161 B
Rust
// gate-test-const_try
|
|
|
|
const fn t() -> Option<()> {
|
|
Some(())?;
|
|
//~^ ERROR `?` is not allowed
|
|
//~| ERROR `?` is not allowed
|
|
None
|
|
}
|
|
|
|
fn main() {}
|