rust/src/libstd/sync/mpsc
Alex Crichton bbbb571fee rustc: Fix a number of stability lint holes
There are a number of holes that the stability lint did not previously cover,
including:

* Types
* Bounds on type parameters on functions and impls
* Where clauses
* Imports
* Patterns (structs and enums)

These holes have all been fixed by overriding the `visit_path` function on the
AST visitor instead of a few specialized cases. This change also necessitated a
few stability changes:

* The `collections::fmt` module is now stable (it was already supposed to be).
* The `thread_local:👿:Key` type is now stable (it was already supposed to
  be).
* The `std::rt::{begin_unwind, begin_unwind_fmt}` functions are now stable.
  These are required via the `panic!` macro.
* The `std::old_io::stdio::{println, println_args}` functions are now stable.
  These are required by the `print!` and `println!` macros.
* The `ops::{FnOnce, FnMut, Fn}` traits are now `#[stable]`. This is required to
  make bounds with these traits stable. Note that manual implementations of
  these traits are still gated by default, this stability only allows bounds
  such as `F: FnOnce()`.

Additionally, the compiler now has special logic to ignore its own generated
`__test` module for the `--test` harness in terms of stability.

Closes #8962
Closes #16360
Closes #20327

[breaking-change]
2015-02-11 12:14:59 -08:00
..
blocking.rs Register snapshot for 9006c3c 2015-01-20 22:15:44 +01:00
mod.rs Mention the queueueue-ness of mpsc. 2015-02-05 22:07:47 -05:00
mpsc_queue.rs Remove all i suffixes 2015-01-30 04:38:54 +01:00
oneshot.rs Fix for misspelled comments. 2015-02-04 23:00:02 -05:00
select.rs rustc: Fix a number of stability lint holes 2015-02-11 12:14:59 -08:00
shared.rs rustc: Fix a number of stability lint holes 2015-02-11 12:14:59 -08:00
spsc_queue.rs cleanup: replace as[_mut]_slice() calls with deref coercions 2015-02-05 13:45:01 -05:00
stream.rs rustc: Fix a number of stability lint holes 2015-02-11 12:14:59 -08:00
sync.rs s/Show/Debug/g 2015-01-29 07:49:02 -05:00