mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 12:23:22 +00:00
8 lines
177 B
Rust
8 lines
177 B
Rust
use std::fmt::Debug;
|
|
|
|
fn main() {
|
|
let x: Option<impl Debug> = Some(44_u32);
|
|
//~^ `impl Trait` is not allowed in the type of variable bindings
|
|
println!("{:?}", x);
|
|
}
|