2012-12-03 16:48:01 -08: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.
|
|
|
|
|
2015-01-22 18:22:03 -08:00
|
|
|
#![cfg_attr(rustc, feature(rustc_private))]
|
|
|
|
#![cfg_attr(rustdoc, feature(rustdoc))]
|
2015-01-17 00:11:19 -08:00
|
|
|
|
2012-10-03 20:32:30 -04:00
|
|
|
#[cfg(rustdoc)]
|
2015-03-24 18:13:54 -07:00
|
|
|
extern crate rustdoc as this;
|
2012-10-03 20:32:30 -04:00
|
|
|
|
2012-11-06 19:44:58 -08:00
|
|
|
#[cfg(rustc)]
|
2015-03-24 18:13:54 -07:00
|
|
|
extern crate rustc_driver as this;
|
2012-11-06 19:44:58 -08:00
|
|
|
|
2014-03-11 13:38:36 -07:00
|
|
|
fn main() { this::main() }
|