about summary refs log tree commit diff
path: root/src/test/compile-fail/no_send-struct.rs
diff options
context:
space:
mode:
authorAriel Ben-Yehuda <ariel.byd@gmail.com>2016-04-05 22:56:23 +0300
committerAriel Ben-Yehuda <ariel.byd@gmail.com>2016-04-05 22:56:23 +0300
commitb23648fe4aa46e9a2bf72c6f68590e799c4cdb07 (patch)
treee18659acdf1159f1269a4d847cdf40f2c128a691 /src/test/compile-fail/no_send-struct.rs
parent31247e5a0b38e2853cec47d30d0a48b2e54dd136 (diff)
downloadrust-b23648fe4aa46e9a2bf72c6f68590e799c4cdb07.tar.gz
rust-b23648fe4aa46e9a2bf72c6f68590e799c4cdb07.zip
improve the printing of substs and trait-refs
Diffstat (limited to 'src/test/compile-fail/no_send-struct.rs')
-rw-r--r--src/test/compile-fail/no_send-struct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/no_send-struct.rs b/src/test/compile-fail/no_send-struct.rs
index 037753e6c5f..b2ca4f9f5db 100644
--- a/src/test/compile-fail/no_send-struct.rs
+++ b/src/test/compile-fail/no_send-struct.rs
@@ -23,5 +23,5 @@ fn bar<T: Send>(_: T) {}
 fn main() {
     let x = Foo { a: 5 };
     bar(x);
-    //~^ ERROR `Foo : std::marker::Send` is not satisfied
+    //~^ ERROR `Foo: std::marker::Send` is not satisfied
 }