blob: 4d2a0e27fd1a97424188dc39b177b66013138a81 [file] [log] [blame]
// compile-flags: -Z print-type-sizes
// compile-pass
// All of the types that occur in this function are uninteresting, in
// that one cannot control the sizes of these types with the same sort
// of enum-variant manipulation tricks.
#![feature(start)]
#[start]
fn start(_: isize, _: *const *const u8) -> isize {
let _byte: u8 = 0;
let _word: usize = 0;
let _tuple: (u8, usize)= (0, 0);
let _array: [u8; 128] = [0; 128];
let _fn: fn (u8) -> u8 = id;
let _diverging: fn (u8) -> ! = bye;
fn id(x: u8) -> u8 { x };
fn bye(_: u8) -> ! { loop { } }
0
}