index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
test
/
ui
/
borrowck
Age
Commit message (
Expand
)
Author
Lines
2018-08-25
An attempt to fix NLL migration mode so that reports region errors when neces...
Felix S. Klock II
-5
/
+40
2018-07-28
Auto merge of #52678 - matthewjasper:better-spans, r=nikomatsakis
bors
-14
/
+10
2018-07-27
Auto merge of #52733 - pnkfelix:issue-51348-make-temp-for-each-candidate-in-a...
bors
-0
/
+33
2018-07-27
Auto merge of #52681 - pnkfelix:z-borrowck-migrate, r=nikomatsakis
bors
-0
/
+147
2018-07-26
Use better spans for dummy accesses used in matches
Matthew Jasper
-14
/
+10
2018-07-26
Auto merge of #52735 - Mark-Simulacrum:rollup, r=Mark-Simulacrum
bors
-2
/
+2
2018-07-26
Regression test for the bug.
Felix S. Klock II
-0
/
+33
2018-07-26
Incorporate edition flag testing into tests of `-Z borrowck=migrate`.
Felix S. Klock II
-7
/
+52
2018-07-26
Bug fix: `#![feature(nll)]` takes precedence over `-Z borrowck=migrate`.
Felix S. Klock II
-0
/
+46
2018-07-26
Test for `-Z borrowck=migrate`.
Felix S. Klock II
-0
/
+56
2018-07-25
consolidate and use `find_sub_region_live_at` for everything
Niko Matsakis
-12
/
+21
2018-07-23
Don't match on region kinds when reporting NLL errors
Matthew Jasper
-2
/
+2
2018-07-22
Fallback to general error handling in ICE cases.
David Wood
-4
/
+4
2018-07-22
Improved closure errors.
David Wood
-16
/
+16
2018-07-22
Classify aggregate rvalues as assignments.
David Wood
-4
/
+4
2018-07-21
Add specific message when moving from upvars in a non-FnOnce closure
Matthew Jasper
-4
/
+4
2018-07-20
Update tests for new NLL mutability errors
Matthew Jasper
-12
/
+784
2018-07-09
find and highlight the `&` or `'_` in `region_name`
Niko Matsakis
-1
/
+1
2018-07-06
Auto merge of #52021 - nikomatsakis:nll-region-errors, r=estebank
bors
-14
/
+36
2018-07-05
fix for issue #8636
Mikhail Modin
-0
/
+256
2018-07-04
write code to extract region names and emit new style message
Niko Matsakis
-14
/
+36
2018-06-30
Auto merge of #51862 - estebank:lifetime-spans, r=nikomatsakis
bors
-18
/
+32
2018-06-28
Also point to free named region on lifetime errors
Esteban Küber
-28
/
+8
2018-06-28
Extend support to `get_generics` for all `NodeItem`s
Esteban Küber
-2
/
+2
2018-06-28
Point to lifetime in fn definition on lifetime error note
Esteban Küber
-1
/
+21
2018-06-28
Point at lifetimes instead of def span for E0195
Esteban Küber
-13
/
+27
2018-06-27
Update tests for grouped nll move errors
Matthew Jasper
-55
/
+80
2018-06-22
Fix erroneous error note when using field after move
Santiago Pastorino
-8
/
+8
2018-06-21
use `pat_ty_adjusted` from `expr_use_visitor` to type of arguments
Niko Matsakis
-0
/
+42
2018-06-19
Update the existing UI tests to reflect diagnostic changes in NLL.
Felix S. Klock II
-1
/
+1
2018-06-19
NLL: Updates to diagnostic output in `test/ui`.
Felix S. Klock II
-3
/
+5
2018-06-06
Update the expected error output to reflect changes in this PR.
Felix S. Klock II
-38
/
+63
2018-06-06
Drive-by: Make assignment conflict tests in borrowck-vec-pattern-nesting.rs r...
Felix S. Klock II
-0
/
+5
2018-06-05
Auto merge of #51242 - ytausky:mut-ref, r=estebank
bors
-0
/
+43
2018-06-01
Suggest not mutably borrowing a mutable reference
Yaron Tausky
-0
/
+43
2018-06-01
also check `let` arms and nested patterns for mutable borrows
Niko Matsakis
-0
/
+161
2018-05-31
change `PointerKind::Implicit` to a note
Niko Matsakis
-0
/
+52
2018-05-29
rust-lang/rust#41962 has a new error with my new code. Incorporate that into ...
Felix S. Klock II
-8
/
+16
2018-05-25
rust-lang/rust#51025: improve test robustness so that they work under NLL too.
Felix S. Klock II
-28
/
+80
2018-05-09
rework causal tracking to explore outlives relationships
Niko Matsakis
-3
/
+12
2018-04-18
Removed `.nll.stderr` files that currently match their corresponding `.stderr...
Felix S. Klock II
-78
/
+0
2018-04-18
Trivial updates to `.nll.stderr` files post-rebase, reflecting s/-Znll/nll/ i...
Felix S. Klock II
-5
/
+5
2018-04-18
Update the previously checkpointed (but unused by bors) tests to reflect curr...
Felix S. Klock II
-1
/
+1
2018-04-15
remove -Znll -- borrowck=mir implies nll now
Niko Matsakis
-27
/
+28
2018-04-11
Checkpoint the current status of NLL on `ui` tests via compare-mode=nll.
Felix S. Klock II
-0
/
+394
2018-04-11
Workaround rust-lang/rust#49855 by forcing rustc_error in any mode, including...
Felix S. Klock II
-4
/
+4
2018-04-06
Add test from #49736
bobtwinkles
-0
/
+49
2018-04-04
two-phase borrows: support multiple activations in one statement
bobtwinkles
-0
/
+35
2018-04-03
Auto merge of #49348 - bobtwinkles:extend_2pb, r=nikomatsakis
bors
-0
/
+29
2018-03-24
Extend two-phase borrows to apply to method receiver autorefs
bobtwinkles
-0
/
+29
[next]