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

8 lines
83 B
Rust
Raw Normal View History

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