aboutsummaryrefslogtreecommitdiff
path: root/src/test/compile-fail/bind-alias.rs
blob: b2f53252c69ddf9ac60e89870ce3f5c5226bcc2f (plain) (blame)
1
2
3
4
5
6
7
// error-pattern: binding alias slot

fn f(&int x) {}

fn main() {
  bind f(10);
}