mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 03:37:26 +03:00
8 lines
157 B
Rust
8 lines
157 B
Rust
use std::ops::Add;
|
|
|
|
fn main() {
|
|
let i: i32 = 0;
|
|
let j: &impl Add = &i;
|
|
//~^ ERROR `impl Trait` is not allowed in the type of variable bindings
|
|
}
|