rust/tests/ui/extern-mod-syntax.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
145 B
Rust
Raw Normal View History

// run-pass
#![allow(unused_imports)]
#![no_std]
2013-08-17 15:37:42 +00:00
extern crate std;
use std::ffi::c_void;
2012-08-14 21:22:52 +00:00
pub fn main() {
std::println!("Hello world!");
2012-08-14 21:22:52 +00:00
}