about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-11-03 08:41:59 +0000
committerbors <bors@rust-lang.org>2023-11-03 08:41:59 +0000
commit49112241e96aaca646b1aa8ef704e494f56feed4 (patch)
tree7fc2c86b2bb20298fab6c2f579fa3b155960f783
parent1d6f05fd3735efc8f5af2f6278a3391543c2790b (diff)
parent5e49a4165e0846af6e8ee0aa4a27d434363d4ae5 (diff)
downloadrust-49112241e96aaca646b1aa8ef704e494f56feed4.tar.gz
rust-49112241e96aaca646b1aa8ef704e494f56feed4.zip
Auto merge of #117510 - elichai:patch-3, r=cuviper
Add track_caller to transmute_copy

Currently if `size_of::<Src>() < size_of::<Dst>()` you will see the following error:
```rust
thread 'test' panicked at /rustc/cc66ad468955717ab92600c770da8c1601a4ff33/library/core/src/mem/mod.rs:1056:5:
cannot transmute_copy if Dst is larger than Src
```
This fixes it so it will show the invocation location
-rw-r--r--library/core/src/mem/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/core/src/mem/mod.rs b/library/core/src/mem/mod.rs
index c88d71f8e54..9159ecb740d 100644
--- a/library/core/src/mem/mod.rs
+++ b/library/core/src/mem/mod.rs
@@ -1054,6 +1054,7 @@ pub const fn copy<T: Copy>(x: &T) -> T {
 /// ```
 #[inline]
 #[must_use]
+#[track_caller]
 #[stable(feature = "rust1", since = "1.0.0")]
 #[rustc_const_stable(feature = "const_transmute_copy", since = "1.74.0")]
 pub const unsafe fn transmute_copy<Src, Dst>(src: &Src) -> Dst {