diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-04-17 22:12:20 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-04-21 11:37:43 -0700 |
| commit | 0791f9f406053d84dc7136c2be015a469304d7f0 (patch) | |
| tree | c9edd59b029ceb96f7654c04a6e0c80d8858a95c /src/test/compile-fail/kindck-send-object.rs | |
| parent | eeb94886adccb3f13003f92f117115d17846ce1f (diff) | |
| download | rust-0791f9f406053d84dc7136c2be015a469304d7f0.tar.gz rust-0791f9f406053d84dc7136c2be015a469304d7f0.zip | |
test: Fix fallout in tests
Diffstat (limited to 'src/test/compile-fail/kindck-send-object.rs')
| -rw-r--r-- | src/test/compile-fail/kindck-send-object.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/test/compile-fail/kindck-send-object.rs b/src/test/compile-fail/kindck-send-object.rs index 0c68401bb2b..570f7ad7fe3 100644 --- a/src/test/compile-fail/kindck-send-object.rs +++ b/src/test/compile-fail/kindck-send-object.rs @@ -12,10 +12,8 @@ // in this file all test the "kind" violates detected during kindck. // See all `regions-bounded-by-send.rs` -use std::marker::MarkerTrait; - fn assert_send<T:Send>() { } -trait Dummy : MarkerTrait { } +trait Dummy { } trait Message : Send { } // careful with object types, who knows what they close over... |
