about summary refs log tree commit diff
path: root/src/test/run-pass/trait-bounds-basic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/trait-bounds-basic.rs')
-rw-r--r--src/test/run-pass/trait-bounds-basic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/trait-bounds-basic.rs b/src/test/run-pass/trait-bounds-basic.rs
index d03496403ad..ed25bf8b02e 100644
--- a/src/test/run-pass/trait-bounds-basic.rs
+++ b/src/test/run-pass/trait-bounds-basic.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 
-trait Foo {
+trait Foo : ::std::marker::MarkerTrait {
 }
 
 fn b(_x: Box<Foo+Send>) {