rust/tests/ui/impl-trait/issues/issue-54600.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
187 B
Rust
Raw Normal View History

use std::fmt::Debug;
fn main() {
let x: Option<impl Debug> = Some(44_u32);
2022-02-17 21:18:42 -06:00
//~^ `impl Trait` only allowed in function and inherent method return types
println!("{:?}", x);
}