summary refs log tree commit diff
path: root/src/test/auxiliary/svh-a-comment.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/auxiliary/svh-a-comment.rs')
-rw-r--r--src/test/auxiliary/svh-a-comment.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/test/auxiliary/svh-a-comment.rs b/src/test/auxiliary/svh-a-comment.rs
index d481fa5a1fa..450f6102026 100644
--- a/src/test/auxiliary/svh-a-comment.rs
+++ b/src/test/auxiliary/svh-a-comment.rs
@@ -15,12 +15,14 @@
 
 #![crate_name = "a"]
 
+use std::marker::MarkerTrait;
+
 macro_rules! three {
     () => { 3 }
 }
 
-pub trait U {}
-pub trait V {}
+pub trait U : MarkerTrait {}
+pub trait V : MarkerTrait {}
 impl U for () {}
 impl V for () {}