summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0192.stderr
blob: fd8976271a510af95f46d88498d8934194413b59 (plain)
1
2
3
4
5
6
7
8
9
error[E0192]: negative impls are only allowed for auto traits (e.g., `Send` and `Sync`)
  --> $DIR/E0192.rs:19:1
   |
LL | impl !Trait for Foo { } //~ ERROR E0192
   | ^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0192`.