rust/src/test/ui/syntax-trait-polarity.stderr

41 lines
1.2 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: inherent impls cannot be negative
2018-12-25 09:56:47 -06:00
--> $DIR/syntax-trait-polarity.rs:7:1
2018-08-08 07:28:26 -05:00
|
LL | impl !TestType {}
| ^^^^^^^^^^^^^^^^^
error[E0198]: negative impls cannot be unsafe
2018-12-25 09:56:47 -06:00
--> $DIR/syntax-trait-polarity.rs:12:1
2018-08-08 07:28:26 -05:00
|
LL | unsafe impl !Send for TestType {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: inherent impls cannot be negative
2018-12-25 09:56:47 -06:00
--> $DIR/syntax-trait-polarity.rs:19:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T> !TestType2<T> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^
error[E0198]: negative impls cannot be unsafe
2018-12-25 09:56:47 -06:00
--> $DIR/syntax-trait-polarity.rs:22:1
2018-08-08 07:28:26 -05:00
|
LL | unsafe impl<T> !Send for TestType2<T> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0192]: negative impls are only allowed for auto traits (e.g., `Send` and `Sync`)
2018-12-25 09:56:47 -06:00
--> $DIR/syntax-trait-polarity.rs:14:1
2018-08-08 07:28:26 -05:00
|
LL | impl !TestTrait for TestType {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0192]: negative impls are only allowed for auto traits (e.g., `Send` and `Sync`)
2018-12-25 09:56:47 -06:00
--> $DIR/syntax-trait-polarity.rs:24:1
2018-08-08 07:28:26 -05:00
|
LL | impl<T> !TestTrait for TestType2<T> {}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 6 previous errors
Some errors occurred: E0192, E0198.
For more information about an error, try `rustc --explain E0192`.