summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/issue-105330.stderr
blob: aeedf6b194978f18c3f73ad5cce8c0bd8b9bba4e (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
43
44
45
46
47
48
49
50
51
error: expected one of `!` or `::`, found `A`
  --> $DIR/issue-105330.rs:8:14
   |
LL | impl TraitWAssocConst for impl Demo {
   |                                     - while parsing this item list starting here
LL |
LL |     pubconst A: str = 32;
   |              ^ expected one of `!` or `::`
LL | }
   | - the item list ends here

error[E0404]: expected trait, found struct `Demo`
  --> $DIR/issue-105330.rs:6:32
   |
LL | impl TraitWAssocConst for impl Demo {
   |                                ^^^^ not a trait

error[E0658]: associated const equality is incomplete
  --> $DIR/issue-105330.rs:11:28
   |
LL | fn foo<A: TraitWAssocConst<A=32>>() {
   |                            ^^^^
   |
   = note: see issue #92827 <https://github.com/rust-lang/rust/issues/92827> for more information
   = help: add `#![feature(associated_const_equality)]` to the crate attributes to enable

error[E0658]: associated const equality is incomplete
  --> $DIR/issue-105330.rs:15:29
   |
LL | fn main<A: TraitWAssocConst<A=32>>() {
   |                             ^^^^
   |
   = note: see issue #92827 <https://github.com/rust-lang/rust/issues/92827> for more information
   = help: add `#![feature(associated_const_equality)]` to the crate attributes to enable

error[E0562]: `impl Trait` only allowed in function and inherent method argument and return types, not in impl headers
  --> $DIR/issue-105330.rs:6:27
   |
LL | impl TraitWAssocConst for impl Demo {
   |                           ^^^^^^^^^

error[E0131]: `main` function is not allowed to have generic parameters
  --> $DIR/issue-105330.rs:15:8
   |
LL | fn main<A: TraitWAssocConst<A=32>>() {
   |        ^^^^^^^^^^^^^^^^^^^^^^^^^^^ `main` cannot have generic parameters

error: aborting due to 6 previous errors

Some errors have detailed explanations: E0131, E0404, E0562, E0658.
For more information about an error, try `rustc --explain E0131`.