]> git.lizzy.rs Git - rust.git/blob - src/librustc_trans_utils/lib.rs
rustdoc: pretty-print Unevaluated expressions in types.
[rust.git] / src / librustc_trans_utils / lib.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! # Note
12 //!
13 //! This API is completely unstable and subject to change.
14
15 #![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
16       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
17       html_root_url = "https://doc.rust-lang.org/nightly/")]
18 #![deny(warnings)]
19
20 #![feature(box_patterns)]
21 #![feature(box_syntax)]
22 #![feature(const_fn)]
23 #![feature(custom_attribute)]
24 #![allow(unused_attributes)]
25 #![feature(i128_type)]
26 #![feature(quote)]
27 #![feature(rustc_diagnostic_macros)]
28 #![feature(slice_patterns)]
29 #![feature(conservative_impl_trait)]
30
31 extern crate rustc;
32 extern crate syntax;
33 extern crate syntax_pos;
34
35 pub mod link;