File: derive_bit_struct.stderr

package info (click to toggle)
rust-cxx 1.0.192-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,808 kB
  • sloc: cpp: 1,625; javascript: 124; sh: 11; makefile: 8
file content (17 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: derive(BitAnd) is currently only supported on enums, not structs
 --> tests/ui/derive_bit_struct.rs:3:14
  |
3 |     #[derive(BitAnd, BitOr, BitXor)]
  |              ^^^^^^

error: derive(BitOr) is currently only supported on enums, not structs
 --> tests/ui/derive_bit_struct.rs:3:22
  |
3 |     #[derive(BitAnd, BitOr, BitXor)]
  |                      ^^^^^

error: derive(BitXor) is currently only supported on enums, not structs
 --> tests/ui/derive_bit_struct.rs:3:29
  |
3 |     #[derive(BitAnd, BitOr, BitXor)]
  |                             ^^^^^^