summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-15562.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-15562.rs')
-rw-r--r--src/test/ui/issues/issue-15562.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-15562.rs b/src/test/ui/issues/issue-15562.rs
new file mode 100644
index 000000000..dc0ecd365
--- /dev/null
+++ b/src/test/ui/issues/issue-15562.rs
@@ -0,0 +1,19 @@
+// run-pass
+// aux-build:issue-15562.rs
+
+// pretty-expanded FIXME #23616
+
+extern crate issue_15562 as i;
+
+pub fn main() {
+ unsafe {
+ transmute();
+ i::transmute();
+ }
+}
+
+// We declare this so we don't run into unresolved symbol errors
+// The above extern is NOT `extern "rust-intrinsic"` and thus
+// means it'll try to find a corresponding symbol to link to.
+#[no_mangle]
+pub extern "C" fn transmute() {}