This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
12c32e944d
rust
/
src
/
test
/
compile-fail
/
unique-unique-kind.rs
8 lines
99 B
Rust
Raw
Normal View
History
Unescape
Escape
Convert all kind bounds to camel case. Remove send, owned keywords.
2012-09-07 16:52:28 -05:00
fn
f
<
T
:
Send
>
(
_i
:
T
)
{
Calculate the correct kind for unique boxes Issue #409
2011-09-22 17:28:49 -05:00
}
fn
main
(
)
{
let
i
=
~
@
100
;
Make moves explicit in cfail tests
2012-09-19 00:44:46 -05:00
f
(
move
i
)
;
//~ ERROR missing `send`
Const kind checking. The rules are almost certainly incomplete and unsound...
2012-05-24 16:24:09 -05:00
}
Reference in New Issue
Copy Permalink