Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
50840ee
Delay bug; this sidesteps ICE'ing when compiler is just doing error-r…
pnkfelix Jul 9, 2019
837fe7b
Regression test.
pnkfelix Jul 9, 2019
d73c23d
explain how to search without owned data
RalfJung Jul 13, 2019
3f77f2c
better comments
RalfJung Jul 14, 2019
589f6a7
tries to refactor InterpError in mir
saleemjaffer Jul 18, 2019
469b7a9
rustc_typeck: improve diagnostics for _ const/static declarations
lundibundi Jul 18, 2019
c6735a6
fixup! rustc_typeck: improve diagnostics for _ const/static declarations
lundibundi Jul 19, 2019
10d4159
Revert "Disable stack probing for gnux32."
crlf0710 Jul 19, 2019
f5b2859
Handle more cases of typos misinterpreted as type ascription
estebank Jul 17, 2019
9dbe2e7
review comments
estebank Jul 19, 2019
b361864
fixup! rustc_typeck: improve diagnostics for _ const/static declarations
lundibundi Jul 19, 2019
c6e027d
fixup! rustc_typeck: improve diagnostics for _ const/static declarations
lundibundi Jul 19, 2019
2641bed
Tweak span for variant not found error
estebank Jul 20, 2019
fd352b0
alters the panic variant of InterpError
saleemjaffer Jul 20, 2019
18dceab
Add tests for issue-58887
JohnTitor Jul 21, 2019
e63fe15
move unescape module to rustc_lexer
matklad Jul 21, 2019
e75ae15
Move into existential-type dir
JohnTitor Jul 21, 2019
795d96d
Place::as_place_ref is now Place::as_ref
spastorino Jul 21, 2019
27b703d
add rustc_private as a proper language feature gate
matklad Jul 22, 2019
1a7127b
normalize use of backticks in compiler messages for librustc_allocator
Jul 22, 2019
4e02a1f
Change "OSX" to "macOS"
atouchet Jul 22, 2019
1ed375c
Update stage0.txt
git-iso Jul 23, 2019
7e612c1
Update src/librustc_lexer/src/lib.rs
matklad Jul 23, 2019
90426ed
moving some variants from InterpError to EvalErrorPanic
saleemjaffer Jul 20, 2019
3730ed9
renames EvalErrorPanic to PanicMessage
saleemjaffer Jul 23, 2019
f48ee09
Update stage0.txt
git-iso Jul 23, 2019
52e9e44
Rollup merge of #60951 - saleemjaffer:mir_better_error_enum, r=oli-obk
Mark-Simulacrum Jul 23, 2019
ad57597
Rollup merge of #62523 - pnkfelix:delay-bug-to-resolve-issue-62203-ic…
Mark-Simulacrum Jul 23, 2019
4264f83
Rollup merge of #62656 - RalfJung:contains-no-own, r=Dylan-DPC
Mark-Simulacrum Jul 23, 2019
ab7149b
Rollup merge of #62791 - estebank:type-ascription, r=petrochenkov
Mark-Simulacrum Jul 23, 2019
13775d2
Rollup merge of #62804 - lundibundi:help-infer-const-static, r=eddyb
Mark-Simulacrum Jul 23, 2019
66c2965
Rollup merge of #62808 - crlf0710:gnux32_stack_probe, r=nikic
Mark-Simulacrum Jul 23, 2019
24a8065
Rollup merge of #62817 - estebank:variant-sp, r=matthewjasper
Mark-Simulacrum Jul 23, 2019
8afc53c
Rollup merge of #62842 - JohnTitor:test-for-58887, r=alexreg
Mark-Simulacrum Jul 23, 2019
4cb3586
Rollup merge of #62851 - matklad:unescape, r=petrochenkov
Mark-Simulacrum Jul 23, 2019
b2155dd
Rollup merge of #62859 - spastorino:rename-to-as-ref, r=Centril
Mark-Simulacrum Jul 23, 2019
f11ffd3
Rollup merge of #62869 - matklad:feature-gate, r=Mark-Simulacrum
Mark-Simulacrum Jul 23, 2019
32e5f98
Rollup merge of #62880 - fakenine:normalize_use_of_backticks_compiler…
Mark-Simulacrum Jul 23, 2019
f1b267b
Rollup merge of #62885 - atouchet:macos, r=alexcrichton
Mark-Simulacrum Jul 23, 2019
c939db7
Rollup merge of #62889 - git-iso:patch-1, r=jonas-schievink
Mark-Simulacrum Jul 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! rustc_typeck: improve diagnostics for _ const/static declarations
  • Loading branch information
lundibundi committed Jul 19, 2019
commit c6e027de52be7acd006e874500ac6a2095f888be
2 changes: 1 addition & 1 deletion src/test/ui/error-codes/E0121.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ LL | static BAR: _ = "test";
| ^
| |
| not allowed in type signatures
| help: replace `_` with the correct return type: `&'static str`
| help: replace `_` with the correct type: `&'static str`

error: aborting due to 2 previous errors

Expand Down