mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
10 lines
179 B
Rust
10 lines
179 B
Rust
![]() |
// run-pass
|
||
|
// compile-flags: -C relocation-model=pic
|
||
|
// ignore-emscripten no pic
|
||
|
// ignore-wasm
|
||
|
|
||
|
#![feature(cfg_relocation_model)]
|
||
|
|
||
|
#[cfg(relocation_model = "pic")]
|
||
|
fn main() {}
|