[gcc r14-8124] gccrs: Add a new test for const without body

Arthur Cohen cohenarthur@gcc.gnu.org
Tue Jan 16 18:15:40 GMT 2024


https://gcc.gnu.org/g:59bd1fc1a4453792aec4314df03b16d784bfcfbd

commit r14-8124-g59bd1fc1a4453792aec4314df03b16d784bfcfbd
Author: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>
Date:   Thu Oct 26 15:48:52 2023 +0200

    gccrs: Add a new test for const without body
    
    This new regression test highlight the fixed behavior for 2709.
    
    gcc/testsuite/ChangeLog:
    
            * rust/compile/issue-2709.rs: New test.
    
    Signed-off-by: Pierre-Emmanuel Patry <pierre-emmanuel.patry@embecosm.com>

Diff:
---
 gcc/testsuite/rust/compile/issue-2709.rs | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gcc/testsuite/rust/compile/issue-2709.rs b/gcc/testsuite/rust/compile/issue-2709.rs
new file mode 100644
index 00000000000..42fe7af230d
--- /dev/null
+++ b/gcc/testsuite/rust/compile/issue-2709.rs
@@ -0,0 +1,8 @@
+fn main() {}
+
+struct S;
+
+impl S {
+    const Y: u8;
+    // { dg-error "associated constant in .impl. without body" "" { target *-*-* } .-1 }
+}


More information about the Gcc-cvs mailing list