mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
10 lines
391 B
Rust
10 lines
391 B
Rust
//@ compile-flags:-Z unstable-options --extern-html-root-url externs_name=https://renamed.example.com --extern-html-root-url empty=https://bad.invalid
|
|
//@ aux-crate:externs_name=empty.rs
|
|
//@ edition: 2018
|
|
|
|
extern crate externs_name as renamed;
|
|
|
|
//@ has extern_html_alias/index.html
|
|
//@ has - '//a/@href' 'https://renamed.example.com/empty/index.html'
|
|
pub use renamed as yet_different_name;
|