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.
|
|
|
|
|
2015-01-14 17:20:14 -06:00
|
|
|
#![allow(unknown_features)]
|
|
|
|
#![feature(unnamed_feature)]
|
2015-01-17 02:11:19 -06:00
|
|
|
|
2012-10-03 19:32:30 -05:00
|
|
|
#[cfg(rustdoc)]
|
2014-09-01 10:59:23 -05:00
|
|
|
extern crate "rustdoc" as this;
|
2012-10-03 19:32:30 -05:00
|
|
|
|
2012-11-06 21:44:58 -06:00
|
|
|
#[cfg(rustc)]
|
2014-11-27 08:57:47 -06:00
|
|
|
extern crate "rustc_driver" as this;
|
2012-11-06 21:44:58 -06:00
|
|
|
|
2014-03-11 15:38:36 -05:00
|
|
|
fn main() { this::main() }
|