about summary refs log tree commit diff
path: root/tests/codegen
diff options
context:
space:
mode:
authorDianQK <dianqk@dianqk.net>2025-02-26 19:54:34 +0800
committerDianQK <dianqk@dianqk.net>2025-02-27 12:57:26 +0800
commit8089fce101f4ac2ed68c8df080c61102b0210429 (patch)
treea7400ec1b517feea55c608876a265db3902344c7 /tests/codegen
parent28d3fef3991d52cf7bf3908944191d86b487a815 (diff)
downloadrust-8089fce101f4ac2ed68c8df080c61102b0210429.tar.gz
rust-8089fce101f4ac2ed68c8df080c61102b0210429.zip
Don't infer attributes of virtual calls based on the function body
Diffstat (limited to 'tests/codegen')
-rw-r--r--tests/codegen/virtual-call-attrs-issue-137646.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/codegen/virtual-call-attrs-issue-137646.rs b/tests/codegen/virtual-call-attrs-issue-137646.rs
new file mode 100644
index 00000000000..72a25b75856
--- /dev/null
+++ b/tests/codegen/virtual-call-attrs-issue-137646.rs
@@ -0,0 +1,18 @@
+//! Regression test for https://github.com/rust-lang/rust/issues/137646.
+//! Since we don't know the exact implementation of the virtual call,
+//! it might write to parameters, we can't infer the readonly attribute.
+//@ compile-flags: -C opt-level=3 -C no-prepopulate-passes
+
+#![crate_type = "lib"]
+
+pub trait Trait {
+    fn m(&self, _: (i32, i32, i32)) {}
+}
+
+#[no_mangle]
+pub fn foo(trait_: &dyn Trait) {
+    // CHECK-LABEL: @foo(
+    // CHECK: call void
+    // CHECK-NOT: readonly
+    trait_.m((1, 1, 1));
+}