2012-12-03 18:48:01 -06:00
|
|
|
// 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 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-10-03 19:32:30 -05:00
|
|
|
#[no_core];
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod core(vers = "0.6");
|
2012-10-03 19:32:30 -05:00
|
|
|
|
|
|
|
#[cfg(cargo)]
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod self(name = "cargo", vers = "0.6");
|
2012-10-03 19:32:30 -05:00
|
|
|
|
|
|
|
#[cfg(fuzzer)]
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod self(name = "fuzzer", vers = "0.6");
|
2012-10-03 19:32:30 -05:00
|
|
|
|
|
|
|
#[cfg(rustdoc)]
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod self(name = "rustdoc", vers = "0.6");
|
2012-10-03 19:32:30 -05:00
|
|
|
|
2012-11-04 18:22:05 -06:00
|
|
|
#[cfg(rusti)]
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod self(name = "rusti", vers = "0.6");
|
2012-11-04 18:22:05 -06:00
|
|
|
|
2012-11-06 21:44:58 -06:00
|
|
|
#[cfg(rustc)]
|
2012-12-21 17:35:15 -06:00
|
|
|
extern mod self(name = "rustc", vers = "0.6");
|
2012-11-06 21:44:58 -06:00
|
|
|
|
2012-10-03 19:32:30 -05:00
|
|
|
fn main() { self::main() }
|