index
:
rust
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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
);
}