summaryrefslogtreecommitdiffstats
path: root/src/test/ui/imports/extern-prelude-extern-crate-absolute-expanded.rs
blob: 30d87f90b30a535655b00294b6c863374158d892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// build-pass (FIXME(62277): could be check-pass?)
// edition:2018

macro_rules! define_iso { () => {
    extern crate std as iso;
}}

::iso::thread_local! {
    static S: u8 = 0;
}

define_iso!();

fn main() {
    let s = S;
}