8 lines
151 B
Rust
8 lines
151 B
Rust
use std::ops::Add;
|
|
|
|
fn main() {
|
|
let i: i32 = 0;
|
|
let j: &impl Add = &i;
|
|
//~^ `impl Trait` is not allowed in the type of variable bindings
|
|
}
|