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
rust
/
src
/
test
History
Niko Matsakis
b3dcb85404
Fix a bug in the opt-in-copy work: it was failing to liberate the regions bound in the impl before searching for
Copy
implements for all fields, leading to problems in the "copyability check". Basically the copyability check would wind up looking for an impl of
for<'tcx> Foo<&'tcx T>
. The impl that exists however is
impl<T> Copy for Foo<T>
and the current rules do not consider that a match (something I would like to revise in a later PR).
2014-12-19 03:29:30 -05:00
..
auxiliary
auto merge of
#19984
: japaric/rust/macro-expressions, r=alexcrichton
2014-12-18 17:32:07 +00:00
bench
s/Tree/BTree
2014-12-18 16:20:32 -05:00
codegen
…
compile-fail
Fix bug in higher-ranked code that would sometimes leak skolemized regions and/or cause incorrect results.
2014-12-19 03:29:29 -05:00
compile-fail-fulldeps
…
debuginfo
…
pretty
…
run-fail
…
run-make
…
run-pass
Fix a bug in the opt-in-copy work: it was failing to liberate the regions bound in the impl before searching for
Copy
implements for all fields, leading to problems in the "copyability check". Basically the copyability check would wind up looking for an impl of
for<'tcx> Foo<&'tcx T>
. The impl that exists however is
impl<T> Copy for Foo<T>
and the current rules do not consider that a match (something I would like to revise in a later PR).
2014-12-19 03:29:30 -05:00
run-pass-fulldeps
auto merge of
#19984
: japaric/rust/macro-expressions, r=alexcrichton
2014-12-18 17:32:07 +00:00
run-pass-valgrind
…