rust/src/libstd
Manish Goregaokar c9f291e4bb Rollup merge of #28289 - shepmaster:include_bytes-docs, r=alexcrichton
This can be shown with the example code

```rust
fn main() {
    let () = include_bytes!("/etc/hosts");
}

Which will have the error:

expected `&[u8; 195]`,
    found `()`
2015-09-09 18:36:11 +05:30
..
collections Implement RFC 839 for {HashMap, HashSet} 2015-08-31 13:57:59 -04:00
ffi std: Update CString::{into,from}_raw with *mut T 2015-09-03 10:36:34 -07:00
io some more clippy-based improvements 2015-09-08 00:36:29 +02:00
net some more clippy-based improvements 2015-09-08 00:36:29 +02:00
num Fix undefined behavior in f64::sqrt 2015-08-22 20:08:53 -04:00
os Fix compile on DragonFly: Replace unknown uint32_t/in64_t by u32/i64. 2015-09-02 10:57:57 +02:00
prelude Fix typo in prelude docs 2015-09-04 21:27:55 -07:00
rand Use null()/null_mut() instead of 0 as *const T/0 as *mut T 2015-09-03 09:49:50 +03:00
rt some more clippy-based improvements 2015-09-08 00:36:29 +02:00
sync some more clippy-based improvements 2015-09-08 00:36:29 +02:00
sys Let's see if lifetime elision works in this case 2015-09-08 08:05:59 +02:00
thread Use null()/null_mut() instead of 0 as *const T/0 as *mut T 2015-09-03 09:49:50 +03:00
time std: Add issues to all unstable features 2015-08-15 18:09:17 -07:00
ascii.rs std: Add issues to all unstable features 2015-08-15 18:09:17 -07:00
dynamic_lib.rs some more clippy-based improvements 2015-09-08 00:36:29 +02:00
env.rs Remove all unstable deprecated functionality 2015-08-12 14:55:17 -07:00
error.rs std: Add issues to all unstable features 2015-08-15 18:09:17 -07:00
fs.rs std: Add issues to all unstable features 2015-08-15 18:09:17 -07:00
lib.rs Refactor low-level UTF-16 decoding. 2015-08-23 00:28:56 +02:00
macros.rs Clarify that include_bytes! returns a reference to an array, not just a slice 2015-09-07 20:01:14 -04:00
panicking.rs
path.rs Rollup merge of #28029 - tshepang:unusual, r=steveklabnik 2015-08-28 03:38:37 +05:30
primitive_docs.rs
process.rs std: Run at_exit cleanup on process::exit 2015-09-02 17:21:11 -07:00
rtdeps.rs