rust/src/test/compile-fail/bind-alias.rs

8 lines
83 B
Rust

// error-pattern: binding alias slot
fn f(&int x) {}
fn main() {
bind f(10);
}