Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
4124466
std: Fix inheriting stdin on status()
alexcrichton Mar 15, 2016
bb43f58
Document heap allocation location guarantee
aidanhs Mar 20, 2016
bef69a1
std: Add regression test for #32074
alexcrichton Mar 21, 2016
3ee841c
Don't loop forever on error recovery with EOF
Mar 18, 2016
2731dc1
Error recovery in the tokeniser
Mar 22, 2016
0950dc3
Remove ungrammatical dots from the error index.
nodakai Mar 23, 2016
be87650
Add augmented assignment operator impls for time types
sfackler Mar 23, 2016
80e7a1b
Mark str::split_at inline
bluss Mar 23, 2016
f621193
Accept 0 as a valid str char boundary
bluss Mar 23, 2016
180d6b5
Tests
Mar 22, 2016
2c48214
doc: remove needless bindings
tshepang Mar 22, 2016
ed28247
configure: update required LLVM version
cardoe Mar 24, 2016
7124ea4
remove broken config
steveklabnik Mar 24, 2016
8d4b1d1
Introduce name resolution fallback for primitive types
petrochenkov Mar 8, 2016
77f033b
Lift the restriction on reusing names of primitive types
petrochenkov Mar 8, 2016
b418cd2
Cleanup
petrochenkov Mar 10, 2016
78495d5
Fix unsound behaviour with null characters in thread names (issue #32…
diwic Mar 25, 2016
5bc2868
make `const_expr_to_pat` fallible (but never have it actually fail)
nikomatsakis Feb 3, 2016
99c2a6b
modify #[deriving(Eq)] to emit #[structural_match]
nikomatsakis Mar 11, 2016
05baf64
do not overwrite spans as eagerly
nikomatsakis Mar 11, 2016
f69eb8e
issue a future-compat lint for constants of invalid type
nikomatsakis Mar 11, 2016
73b4f06
suppress duplicate lints
nikomatsakis Mar 11, 2016
56ebf2b
fallout in existing tests
nikomatsakis Mar 11, 2016
7f661ec
new tests for RFC #1445
nikomatsakis Mar 11, 2016
93e4443
check for both partialeq and eq
nikomatsakis Mar 25, 2016
6ce63fb
Add note on `str` being an unsized type in strings section of book.
xevix Mar 25, 2016
b9a2311
rustc: move middle::subst into middle::ty.
eddyb Mar 22, 2016
a6f69f1
rustc: move cfg, infer, traits and ty from middle to top-level.
eddyb Mar 22, 2016
00e77be
rustc_trans: move save to librustc_save_analysis.
eddyb Mar 22, 2016
7eb0547
rustc_trans: move the contents of the trans module to top-level.
eddyb Mar 22, 2016
c7049f6
Fix the name of the 'check-cargotest' step
brson Mar 25, 2016
944dc4a
fix cargo.toml for new dependency
nikomatsakis Mar 25, 2016
2536ae5
fix error message
nikomatsakis Mar 25, 2016
88ab938
Avoid page reload upon hitting "S" when browing in local mode
Mar 25, 2016
a755a67
std: Rewrite Once with poisoning
alexcrichton Mar 18, 2016
eac55c2
Rollup merge of #32131 - petrochenkov:prim, r=eddyb
Manishearth Mar 26, 2016
1bf8d69
Rollup merge of #32199 - nikomatsakis:limiting-constants-in-patterns-…
Manishearth Mar 26, 2016
0274432
Rollup merge of #32257 - alexcrichton:fix-status-stdin, r=aturon
Manishearth Mar 26, 2016
9f2e0a6
Rollup merge of #32325 - alexcrichton:panic-once, r=aturon
Manishearth Mar 26, 2016
b27d113
Rollup merge of #32383 - aidanhs:aphs-heap-move-guarantee, r=alexcric…
Manishearth Mar 26, 2016
276d658
Rollup merge of #32387 - alexcrichton:ascii-test, r=aturon
Manishearth Mar 26, 2016
7b76b22
Rollup merge of #32432 - eddyb:dock-service, r=nikomatsakis
Manishearth Mar 26, 2016
92929be
Rollup merge of #32435 - nrc:fix-err-recover, r=nikomatsakis
Manishearth Mar 26, 2016
b6b2dbd
Rollup merge of #32440 - tshepang:compact, r=steveklabnik
Manishearth Mar 26, 2016
c5e3577
Rollup merge of #32447 - nodakai:dots-in-err-idx, r=Manishearth
Manishearth Mar 26, 2016
f6001ce
Rollup merge of #32448 - sfackler:time-augmented-assignment, r=alexcr…
Manishearth Mar 26, 2016
2e0dad7
Rollup merge of #32456 - bluss:str-zero, r=alexcrichton
Manishearth Mar 26, 2016
af2f001
Rollup merge of #32468 - cardoe:llvm-check, r=alexcrichton
Manishearth Mar 26, 2016
ab0f652
Rollup merge of #32470 - rust-lang:steveklabnik-patch-1, r=alexcrichton
Manishearth Mar 26, 2016
71fa130
Rollup merge of #32476 - diwic:63-null-thread-name, r=alexcrichton
Manishearth Mar 26, 2016
707517e
Rollup merge of #32478 - xevix:docs/strings-str-unsized-types, r=stev…
Manishearth Mar 26, 2016
49a9137
Rollup merge of #32484 - brson:cargotest, r=alexcrichton
Manishearth Mar 26, 2016
17ea3e8
Rollup merge of #32492 - xitep:master, r=alexcrichton
Manishearth Mar 26, 2016
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
std: Add regression test for #32074
Just to make sure we don't accidentally break this in the future.
  • Loading branch information
alexcrichton committed Mar 21, 2016
commit bef69a116e0042fbd92dfa08de68da73765f4c14
6 changes: 6 additions & 0 deletions src/libstd/ascii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -669,4 +669,10 @@ mod tests {
&from_u32(lower).unwrap().to_string()));
}
}

#[test]
fn inference_works() {
let x = "a".to_string();
x.eq_ignore_ascii_case("A");
}
}