summary refs log tree commit diff
path: root/src/test/run-pass/issue-11384.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/issue-11384.rs')
-rw-r--r--src/test/run-pass/issue-11384.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-11384.rs b/src/test/run-pass/issue-11384.rs
index a511149b05e..26634fabf5a 100644
--- a/src/test/run-pass/issue-11384.rs
+++ b/src/test/run-pass/issue-11384.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-trait Common {}
+trait Common { fn dummy(&self) { } }
 
 impl<'t, T> Common for (T, &'t T) {}