about summary refs log tree commit diff
path: root/tests/ui/unsized
diff options
context:
space:
mode:
authorOneirical <manchot@videotron.ca>2025-07-13 15:56:27 -0400
committerOneirical <manchot@videotron.ca>2025-07-24 17:01:44 -0400
commita924d44115b632775ef0d2e12382e285953b0c2c (patch)
tree4cb6005288fc4a7407006094892fcf577f3f30cf /tests/ui/unsized
parent246733a3d978de41c5b77b8120ba8f41592df9f1 (diff)
downloadrust-a924d44115b632775ef0d2e12382e285953b0c2c.tar.gz
rust-a924d44115b632775ef0d2e12382e285953b0c2c.zip
Rehome tests/ui/issues/ tests [1/?]
Diffstat (limited to 'tests/ui/unsized')
-rw-r--r--tests/ui/unsized/unsized-function-argument-41229.rs6
-rw-r--r--tests/ui/unsized/unsized-function-argument-41229.stderr16
2 files changed, 22 insertions, 0 deletions
diff --git a/tests/ui/unsized/unsized-function-argument-41229.rs b/tests/ui/unsized/unsized-function-argument-41229.rs
new file mode 100644
index 00000000000..9210431dc2f
--- /dev/null
+++ b/tests/ui/unsized/unsized-function-argument-41229.rs
@@ -0,0 +1,6 @@
+pub fn example(ref s: str) {}
+//~^ ERROR the size for values of type
+
+fn main() {}
+
+// https://github.com/rust-lang/rust/issues/41229
diff --git a/tests/ui/unsized/unsized-function-argument-41229.stderr b/tests/ui/unsized/unsized-function-argument-41229.stderr
new file mode 100644
index 00000000000..326e5681f70
--- /dev/null
+++ b/tests/ui/unsized/unsized-function-argument-41229.stderr
@@ -0,0 +1,16 @@
+error[E0277]: the size for values of type `str` cannot be known at compilation time
+  --> $DIR/unsized-function-argument-41229.rs:1:23
+   |
+LL | pub fn example(ref s: str) {}
+   |                       ^^^ doesn't have a size known at compile-time
+   |
+   = help: the trait `Sized` is not implemented for `str`
+   = help: unsized fn params are gated as an unstable feature
+help: function arguments must have a statically known size, borrowed types always have a known size
+   |
+LL | pub fn example(ref s: &str) {}
+   |                       +
+
+error: aborting due to 1 previous error
+
+For more information about this error, try `rustc --explain E0277`.