rust/src/test/ui/codemap_tests/empty_span.stderr

10 lines
449 B
Plaintext
Raw Normal View History

error[E0321]: cross-crate traits with a default impl, like `std::marker::Send`, can only be implemented for a struct/enum type, not `&'static main::Foo`
2016-08-16 07:52:30 +00:00
--> $DIR/empty_span.rs:17:5
|
2018-02-23 00:42:32 +00:00
LL | unsafe impl Send for &'static Foo { } //~ ERROR cross-crate traits with a default impl
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
2018-02-19 20:40:25 +00:00
If you want more information on this error, try using "rustc --explain E0321"