summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hygiene/cross-crate-codegen-attrs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/hygiene/cross-crate-codegen-attrs.rs')
-rw-r--r--src/test/ui/hygiene/cross-crate-codegen-attrs.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/hygiene/cross-crate-codegen-attrs.rs b/src/test/ui/hygiene/cross-crate-codegen-attrs.rs
new file mode 100644
index 000000000..af6b13343
--- /dev/null
+++ b/src/test/ui/hygiene/cross-crate-codegen-attrs.rs
@@ -0,0 +1,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);
+}