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

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

8 lines
174 B
Rust
Raw Normal View History

use std::ops::Add;
fn main() {
let i: i32 = 0;
let j: &impl Add = &i;
2023-10-04 14:51:43 -05:00
//~^ `impl Trait` only allowed in function and inherent method argument and return types
}