041e54bd92
Fix #80476.
8 lines
200 B
Rust
8 lines
200 B
Rust
use std::fmt::Debug;
|
|
|
|
fn main() {
|
|
let x: Option<impl Debug> = Some(44_u32);
|
|
//~^ `impl Trait` only allowed in function and inherent method argument and return types
|
|
println!("{:?}", x);
|
|
}
|