summary refs log tree commit diff
path: root/src/test/run-pass/issue-11612.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/issue-11612.rs')
-rw-r--r--src/test/run-pass/issue-11612.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-11612.rs b/src/test/run-pass/issue-11612.rs
index fa25d25df05..3c69377b375 100644
--- a/src/test/run-pass/issue-11612.rs
+++ b/src/test/run-pass/issue-11612.rs
@@ -12,7 +12,7 @@
 // We weren't updating the auto adjustments with all the resolved
 // type information after type check.
 
-trait A {}
+trait A { fn dummy(&self) { } }
 
 struct B<'a, T:'a> {
     f: &'a T