summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/cross-crate-codegen-attrs.rs
blob: af6b1334387eabcf494199a33ac652115963b218 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Make sure that macro expanded codegen attributes work across crates.
// We used to gensym the identifiers in attributes, which stopped dependent
// crates from seeing them, resulting in linker errors in cases like this one.

// run-pass
// aux-build:codegen-attrs.rs

extern crate codegen_attrs;

fn main() {
    assert_eq!(codegen_attrs::rust_function_name(), 2);
}