rust/src/test
bors 1c56652640 auto merge of #10064 : luqmana/rust/vvv, r=nikomatsakis
Fixes #2057.

Example:
```Rust
#[no_std];

type c_char = u8;
type c_int = i32;
type size_t = uint;

extern {
    fn printf(format: *c_char, ...) -> c_int;
}

#[lang="fail_bounds_check"]
fn fail_bounds_check(_: *c_char, _: size_t, _: size_t, _: size_t) {}

#[start]
#[fixed_stack_segment]
fn main(_: int, _: **u8) -> int {
    unsafe {
        let msg = bytes!("Hello World!
2013-11-04 21:02:07 -08:00
..
auxiliary auto merge of #10182 : alexcrichton/rust/typeid-intrinsic, r=nikomatsakis 2013-11-04 19:21:50 -08:00
bench Fill out the remaining functionality in io::file 2013-11-03 15:15:42 -08:00
codegen Add pub to all the codegen tests 2013-10-10 06:00:51 -07:00
compile-fail Add tests for variadic foreign functions. 2013-11-04 23:53:11 -05:00
debug-info Relax the constraints on a debuginfo test 2013-11-04 17:11:44 -08:00
pretty librustc: Implement |A| -> B syntax for closures and make bare fn 2013-10-31 10:30:32 -07:00
run-fail auto merge of #10204 : alexcrichton/rust/better-names, r=brson 2013-11-01 11:31:32 -07:00
run-pass auto merge of #10064 : luqmana/rust/vvv, r=nikomatsakis 2013-11-04 21:02:07 -08:00
run-pass-fulldeps Remove all blocking std::os blocking functions 2013-11-03 15:15:42 -08:00