blob: 6206498e4a2be5f887b490fe7e6dd16ca6b8429f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![feature(prelude_import)]
#![no_std]
#[macro_use]
extern crate std;
#[prelude_import]
use ::std::prelude::rust_2015::*;
// Test for issue 80832
//
//@ pretty-mode:expanded
//@ pp-exact:expanded-and-path-remap-80832.pp
//@ compile-flags: --remap-path-prefix {{src-base}}=the/src
fn main() {}
|