14 lines
215 B
Text
14 lines
215 B
Text
//@ build-pass
|
|
//@ compile-flags: -Zunpretty=hir
|
|
|
|
#![feature(const_block_items)]
|
|
extern crate std;
|
|
#[attr = PreludeImport]
|
|
use ::std::prelude::rust_2015::*;
|
|
|
|
const _: () =
|
|
{
|
|
// foo
|
|
};
|
|
|
|
fn main() { }
|