041e54bd92
Fix #80476.
8 lines
174 B
Rust
8 lines
174 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 argument and return types
|
|
}
|