mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
3079bd96b9
With the exception of `tests/run-make/translation/test.rs`, which has a syntax error. The expected output in `rustdoc-error-lines/rmake.rs`'s required slight tweaking. The two `reproducible-build.rs` files need `// ignore-tidy-linelength` because rustfmt produces lines longer than 100 chars, which tidy doesn't like, yuk.
35 lines
586 B
Rust
35 lines
586 B
Rust
#![crate_type = "bin"]
|
|
#![feature(start)]
|
|
#![no_std]
|
|
|
|
extern crate a;
|
|
extern crate alloc;
|
|
extern crate b;
|
|
|
|
use alloc::vec::Vec;
|
|
use core::alloc::*;
|
|
|
|
struct Allocator;
|
|
|
|
unsafe impl GlobalAlloc for Allocator {
|
|
unsafe fn alloc(&self, _: Layout) -> *mut u8 {
|
|
loop {}
|
|
}
|
|
|
|
unsafe fn dealloc(&self, _: *mut u8, _: Layout) {
|
|
loop {}
|
|
}
|
|
}
|
|
|
|
#[global_allocator]
|
|
static ALLOCATOR: Allocator = Allocator;
|
|
|
|
#[start]
|
|
fn main(argc: isize, _argv: *const *const u8) -> isize {
|
|
let mut v = Vec::new();
|
|
for i in 0..argc {
|
|
v.push(i);
|
|
}
|
|
v.iter().sum()
|
|
}
|