about summary refs log tree commit diff
path: root/library/proc_macro/src/bridge/scoped_cell.rs
AgeCommit message (Collapse)AuthorLines
2024-03-23proc_macro: simplify bridge statejoboet-64/+0
2024-02-22Add `rustc_confusables` annotations to some stdlib APIsEsteban Küber-0/+1
Help with common API confusion, like asking for `push` when the data structure really has `append`. ``` error[E0599]: no method named `size` found for struct `Vec<{integer}>` in the current scope --> $DIR/rustc_confusables_std_cases.rs:17:7 | LL | x.size(); | ^^^^ | help: you might have meant to use `len` | LL | x.len(); | ~~~ help: there is a method with a similar name | LL | x.resize(); | ~~~~~~ ``` #59450
2024-02-19Remove `RefMutL` hack in `proc_macro::bridge`Pavel Grigorenko-20/+2
2022-05-13Remove some unnecessary `rustc_allow_const_fn_unstable` attributes.Nicholas Nethercote-1/+0
2020-11-19Bump bootstrap compiler versionJake Goulding-2/+1
2020-10-21switch allow_internal_unstable const fns to rustc_allow_const_fn_unstableFlorian Warzecha-1/+2
2020-09-22Update library functions with stability attributesDylan MacKenzie-0/+1
This may not be strictly minimal, but all unstable functions also need a `rustc_const_unstable` attribute.
2020-07-27mv std libs to library/mark-0/+81