]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
gccrs: Add new test for parsing errors on self pointers
authorPierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Wed, 15 Nov 2023 12:53:23 +0000 (13:53 +0100)
committerArthur Cohen <arthur.cohen@embecosm.com>
Tue, 30 Jan 2024 11:36:42 +0000 (12:36 +0100)
Add new tests to highlight the behavior of errors thrown when meeting a
self pointer.

gcc/testsuite/ChangeLog:

* rust/compile/self_const_ptr.rs: New test.
* rust/compile/self_mut_ptr.rs: New test.
* rust/compile/self_ptr.rs: New test.

Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
gcc/testsuite/rust/compile/self_const_ptr.rs [new file with mode: 0644]
gcc/testsuite/rust/compile/self_mut_ptr.rs [new file with mode: 0644]
gcc/testsuite/rust/compile/self_ptr.rs [new file with mode: 0644]

diff --git a/gcc/testsuite/rust/compile/self_const_ptr.rs b/gcc/testsuite/rust/compile/self_const_ptr.rs
new file mode 100644 (file)
index 0000000..014fe1b
--- /dev/null
@@ -0,0 +1,8 @@
+struct MyStruct;
+
+impl MyStruct {
+    pub fn do_something(*const self) {}
+    // { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 }
+    // { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 }
+    // { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 }
+}
diff --git a/gcc/testsuite/rust/compile/self_mut_ptr.rs b/gcc/testsuite/rust/compile/self_mut_ptr.rs
new file mode 100644 (file)
index 0000000..2a127b7
--- /dev/null
@@ -0,0 +1,8 @@
+struct MyStruct;
+
+impl MyStruct {
+    pub fn do_something(*mut self) {}
+    // { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 }
+    // { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 }
+    // { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 }
+}
diff --git a/gcc/testsuite/rust/compile/self_ptr.rs b/gcc/testsuite/rust/compile/self_ptr.rs
new file mode 100644 (file)
index 0000000..fd7ff6c
--- /dev/null
@@ -0,0 +1,8 @@
+struct MyStruct;
+
+impl MyStruct {
+    pub fn do_something(*self) {}
+    // { dg-error "cannot pass .self. by raw pointer" "" { target *-*-* } .-1 }
+    // { dg-error "failed to parse inherent impl item in inherent impl" "" { target *-*-* } .-2 }
+    // { dg-error "failed to parse item in crate" "" { target *-*-* } .-3 }
+}