mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
291 B
ObjectPascal
14 lines
291 B
ObjectPascal
#![feature(prelude_import)]
|
|
#![no_std]
|
|
#[prelude_import]
|
|
use ::std::prelude::rust_2015::*;
|
|
#[macro_use]
|
|
extern crate std;
|
|
// 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() {}
|