blob: 1652130cd4ccfecad3284487c7255f4b6e08b8d0 [file]
/* { dg-output "Result: 123\r*\n" } */
#![feature(no_core)]
#![no_core]
#![feature(lang_items)]
extern "C" {
fn printf(s: *const i8, ...);
}
#[lang = "sized"]
pub trait Sized {}
enum Foo<T> {
A,
B(T),
}
fn main() -> i32 {
let result = Foo::B(123);
match result {
Foo::A => unsafe {
let a = "A\n\0";
let b = a as *const str;
let c = b as *const i8;
printf(c);
},
Foo::B(x) => unsafe {
let a = "Result: %i\n\0";
let b = a as *const str;
let c = b as *const i8;
printf(c, x);
},
}
0
}