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

8 lines
161 B
Rust

use std::ops::Add;
fn main() {
let i: i32 = 0;
let j: &impl Add = &i;
//~^ `impl Trait` only allowed in function and inherent method return types
}