summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs')
-rw-r--r--src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs b/src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs
new file mode 100644
index 000000000..d5bca6a24
--- /dev/null
+++ b/src/test/ui/rfcs/rfc-2005-default-binding-mode/constref.rs
@@ -0,0 +1,40 @@
+// run-pass
+const CONST_REF: &[u8; 3] = b"foo";
+
+trait Foo {
+ const CONST_REF_DEFAULT: &'static [u8; 3] = b"bar";
+ const CONST_REF: &'static [u8; 3];
+}
+
+impl Foo for i32 {
+ const CONST_REF: &'static [u8; 3] = b"jjj";
+}
+
+impl Foo for i64 {
+ const CONST_REF_DEFAULT: &'static [u8; 3] = b"ggg";
+ const CONST_REF: &'static [u8; 3] = b"fff";
+}
+
+// Check that (associated and free) const references are not mistaken for a
+// non-reference pattern (in which case they would be auto-dereferenced, making
+// the types mismatched).
+
+fn const_ref() -> bool {
+ let f = b"foo";
+ match f {
+ CONST_REF => true,
+ _ => false,
+ }
+}
+
+fn associated_const_ref() -> bool {
+ match (b"bar", b"jjj", b"ggg", b"fff") {
+ (i32::CONST_REF_DEFAULT, i32::CONST_REF, i64::CONST_REF_DEFAULT, i64::CONST_REF) => true,
+ _ => false,
+ }
+}
+
+pub fn main() {
+ assert!(const_ref());
+ assert!(associated_const_ref());
+}