summary refs log tree commit diff
path: root/src/test/ui-fulldeps/extern-mod-syntax.rs
blob: 258ab0dbe95628c1fc394aaac8f5f181534b5844 (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass

#![allow(unused_imports)]
#![feature(rustc_private)]

extern crate serialize;
use serialize::json::Object;

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