about summary refs log tree commit diff
path: root/tests/ui/const-ptr/pointer-address-stability.rs
diff options
context:
space:
mode:
authorJubilee <workingjubilee@gmail.com>2025-07-04 23:26:23 -0700
committerGitHub <noreply@github.com>2025-07-04 23:26:23 -0700
commit5f415da0b52fa8de667ce53ec5daf76fca6a0591 (patch)
tree5c2c965d8d781e131a6f46dcb4e0c8e0748b4316 /tests/ui/const-ptr/pointer-address-stability.rs
parent069f571fad6c4f99aa1cdc9367bc51a758a9f5e6 (diff)
parent066a281f60fd5071a50cf15a28ed40f15bef7563 (diff)
downloadrust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.tar.gz
rust-5f415da0b52fa8de667ce53ec5daf76fca6a0591.zip
Rollup merge of #143300 - Kivooeo:tf25, r=tgross35
`tests/ui`: A New Order [25/N]

> [!NOTE]
>
> Intermediate commits are intended to help review, but will be squashed prior to merge.

Some `tests/ui/` housekeeping, to trim down number of tests directly under `tests/ui/`. Part of rust-lang/rust#133895.

r? `@tgross35`
Diffstat (limited to 'tests/ui/const-ptr/pointer-address-stability.rs')
-rw-r--r--tests/ui/const-ptr/pointer-address-stability.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/const-ptr/pointer-address-stability.rs b/tests/ui/const-ptr/pointer-address-stability.rs
new file mode 100644
index 00000000000..84a36e1ddf5
--- /dev/null
+++ b/tests/ui/const-ptr/pointer-address-stability.rs
@@ -0,0 +1,11 @@
+//! Check that taking the address of a stack variable with `&`
+//! yields a stable and comparable pointer.
+//!
+//! Regression test for <https://github.com/rust-lang/rust/issues/2040>.
+
+//@ run-pass
+
+pub fn main() {
+    let foo: isize = 1;
+    assert_eq!(&foo as *const isize, &foo as *const isize);
+}