about summary refs log tree commit diff
path: root/src/test/compile-fail/proc-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/compile-fail/proc-bounds.rs')
-rw-r--r--src/test/compile-fail/proc-bounds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/proc-bounds.rs b/src/test/compile-fail/proc-bounds.rs
index 0875212b7de..e8c6a3ba191 100644
--- a/src/test/compile-fail/proc-bounds.rs
+++ b/src/test/compile-fail/proc-bounds.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 fn is_send<T: Send>() {}
-fn is_freeze<T: Share>() {}
+fn is_freeze<T: Sync>() {}
 fn is_static<T: 'static>() {}
 
 fn main() {