summaryrefslogtreecommitdiffstats
path: root/tests/ui/extern-mod-syntax.rs
blob: 65dfa6a0f579034c16d30c307ebe7f8c68cf3309 (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass

#![allow(unused_imports)]
#![no_std]

extern crate std;
use std::ffi::c_void;

pub fn main() {
    std::println!("Hello world!");
}