]> git.lizzy.rs Git - rust.git/blob - tests/ui/associated-consts/issue-58022.stderr
add tests for 107090
[rust.git] / tests / ui / associated-consts / issue-58022.stderr
1 error[E0790]: cannot refer to the associated constant on trait without specifying the corresponding `impl` type
2   --> $DIR/issue-58022.rs:4:25
3    |
4 LL |     const SIZE: usize;
5    |     ------------------ `Foo::SIZE` defined here
6 LL |
7 LL |     fn new(slice: &[u8; Foo::SIZE]) -> Self;
8    |                         ^^^^^^^^^ cannot refer to the associated constant of trait
9
10 error[E0423]: expected function, tuple struct or tuple variant, found trait `Foo`
11   --> $DIR/issue-58022.rs:14:9
12    |
13 LL |         Foo(Box::new(*slice))
14    |         ^^^ not a function, tuple struct or tuple variant
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0423, E0790.
19 For more information about an error, try `rustc --explain E0423`.