// Copyright 2012 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #[no_core]; extern mod core(vers = "0.6"); #[cfg(cargo)] extern mod self(name = "cargo", vers = "0.6"); #[cfg(fuzzer)] extern mod self(name = "fuzzer", vers = "0.6"); #[cfg(rustdoc)] extern mod self(name = "rustdoc", vers = "0.6"); #[cfg(rusti)] extern mod self(name = "rusti", vers = "0.6"); #[cfg(rustc)] extern mod self(name = "rustc", vers = "0.6"); fn main() { self::main() }