about summary refs log tree commit diff
path: root/src/test/compile-fail/bind-alias.rs
blob: 7d85d07f8a004a453e1ed0c46bf1a5c6309ea856 (plain)
1
2
3
4
5
6
7
8
// xfail-stage0
// error-pattern: binding alias slot

fn f(&int x) {}

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