summary refs log tree commit diff
path: root/src/test/ui/parser/issue-33418.stderr
blob: bfe44588a5b0b08d858c4db271f3961c4f09fafc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
error: negative trait bounds are not supported
  --> $DIR/issue-33418.rs:3:9
   |
LL | trait Tr: !SuperA {} //~ ERROR negative trait bounds are not supported
   |         ^^^^^^^^^ help: remove the trait bound

error: negative trait bounds are not supported
  --> $DIR/issue-33418.rs:4:19
   |
LL | trait Tr2: SuperA + !SuperB {} //~ ERROR negative trait bounds are not supported
   |          ---------^^^^^^^^^
   |          |
   |          help: remove the trait bound

error: negative trait bounds are not supported
  --> $DIR/issue-33418.rs:5:10
   |
LL | trait Tr3: !SuperA + SuperB {} //~ ERROR negative trait bounds are not supported
   |          ^^^^^^^^^---------
   |          |
   |          help: remove the trait bound

error: negative trait bounds are not supported
  --> $DIR/issue-33418.rs:6:10
   |
LL |   trait Tr4: !SuperA + SuperB //~ ERROR negative trait bounds are not supported
   |  __________-^^^^^^^^
LL | |     + !SuperC + SuperD {}
   | |_____^^^^^^^^^________- help: remove the trait bounds

error: negative trait bounds are not supported
  --> $DIR/issue-33418.rs:8:10
   |
LL |   trait Tr5: !SuperA //~ ERROR negative trait bounds are not supported
   |  __________-^^^^^^^^
LL | |     + !SuperB {}
   | |     ^^^^^^^^-
   | |_____________|
   |               help: remove the trait bounds

error: aborting due to 5 previous errors