summaryrefslogtreecommitdiffstats
path: root/src/test/ui/raw-ref-op/raw-ref-temp.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:25 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:25 +0000
commit5363f350887b1e5b5dd21a86f88c8af9d7fea6da (patch)
tree35ca005eb6e0e9a1ba3bb5dbc033209ad445dc17 /src/test/ui/raw-ref-op/raw-ref-temp.rs
parentAdding debian version 1.66.0+dfsg1-1. (diff)
downloadrustc-5363f350887b1e5b5dd21a86f88c8af9d7fea6da.tar.xz
rustc-5363f350887b1e5b5dd21a86f88c8af9d7fea6da.zip
Merging upstream version 1.67.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/raw-ref-op/raw-ref-temp.rs')
-rw-r--r--src/test/ui/raw-ref-op/raw-ref-temp.rs40
1 files changed, 20 insertions, 20 deletions
diff --git a/src/test/ui/raw-ref-op/raw-ref-temp.rs b/src/test/ui/raw-ref-op/raw-ref-temp.rs
index 32df56468..10e47cb34 100644
--- a/src/test/ui/raw-ref-op/raw-ref-temp.rs
+++ b/src/test/ui/raw-ref-op/raw-ref-temp.rs
@@ -8,24 +8,24 @@ const PAIR: (i32, i64) = (1, 2);
const ARRAY: [i32; 2] = [1, 2];
fn main() {
- let ref_expr = &raw const 2; //~ ERROR cannot take address
- let mut_ref_expr = &raw mut 3; //~ ERROR cannot take address
- let ref_const = &raw const FOUR; //~ ERROR cannot take address
- let mut_ref_const = &raw mut FOUR; //~ ERROR cannot take address
-
- let field_ref_expr = &raw const (1, 2).0; //~ ERROR cannot take address
- let mut_field_ref_expr = &raw mut (1, 2).0; //~ ERROR cannot take address
- let field_ref = &raw const PAIR.0; //~ ERROR cannot take address
- let mut_field_ref = &raw mut PAIR.0; //~ ERROR cannot take address
-
- let index_ref_expr = &raw const [1, 2][0]; //~ ERROR cannot take address
- let mut_index_ref_expr = &raw mut [1, 2][0]; //~ ERROR cannot take address
- let index_ref = &raw const ARRAY[0]; //~ ERROR cannot take address
- let mut_index_ref = &raw mut ARRAY[1]; //~ ERROR cannot take address
-
- let ref_ascribe = &raw const (2: i32); //~ ERROR cannot take address
- let mut_ref_ascribe = &raw mut (3: i32); //~ ERROR cannot take address
-
- let ascribe_field_ref = &raw const (PAIR.0: i32); //~ ERROR cannot take address
- let ascribe_index_ref = &raw mut (ARRAY[0]: i32); //~ ERROR cannot take address
+ let ref_expr = &raw const 2; //~ ERROR cannot take address
+ let mut_ref_expr = &raw mut 3; //~ ERROR cannot take address
+ let ref_const = &raw const FOUR; //~ ERROR cannot take address
+ let mut_ref_const = &raw mut FOUR; //~ ERROR cannot take address
+
+ let field_ref_expr = &raw const (1, 2).0; //~ ERROR cannot take address
+ let mut_field_ref_expr = &raw mut (1, 2).0; //~ ERROR cannot take address
+ let field_ref = &raw const PAIR.0; //~ ERROR cannot take address
+ let mut_field_ref = &raw mut PAIR.0; //~ ERROR cannot take address
+
+ let index_ref_expr = &raw const [1, 2][0]; //~ ERROR cannot take address
+ let mut_index_ref_expr = &raw mut [1, 2][0]; //~ ERROR cannot take address
+ let index_ref = &raw const ARRAY[0]; //~ ERROR cannot take address
+ let mut_index_ref = &raw mut ARRAY[1]; //~ ERROR cannot take address
+
+ let ref_ascribe = &raw const type_ascribe!(2, i32); //~ ERROR cannot take address
+ let mut_ref_ascribe = &raw mut type_ascribe!(3, i32); //~ ERROR cannot take address
+
+ let ascribe_field_ref = &raw const type_ascribe!(PAIR.0, i32); //~ ERROR cannot take address
+ let ascribe_index_ref = &raw mut type_ascribe!(ARRAY[0], i32); //~ ERROR cannot take address
}