summary refs log tree commit diff
path: root/src/test/run-pass/issue-13105.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/issue-13105.rs')
-rw-r--r--src/test/run-pass/issue-13105.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-13105.rs b/src/test/run-pass/issue-13105.rs
index 7fab36bd64e..64807dc44e0 100644
--- a/src/test/run-pass/issue-13105.rs
+++ b/src/test/run-pass/issue-13105.rs
@@ -8,7 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-trait Foo {
+use std::marker::MarkerTrait;
+
+trait Foo : MarkerTrait {
     fn quux(u8) {}
 }