mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
372 B
Rust
18 lines
372 B
Rust
// https://github.com/rust-lang/rust/issues/84434
|
|
//@ check-pass
|
|
|
|
use std::path::Path;
|
|
struct A {
|
|
pub func: fn(check: bool, a: &Path, b: Option<&Path>),
|
|
}
|
|
const MY_A: A = A {
|
|
func: |check, a, b| {
|
|
if check {
|
|
let _ = ();
|
|
} else if let Some(parent) = b.and_then(|p| p.parent()) {
|
|
let _ = ();
|
|
}
|
|
},
|
|
};
|
|
|
|
fn main() {}
|