rust/tests/ui/associated-consts/assoc-const-ty-mismatch.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
632 B
Plaintext
Raw Normal View History

error: expected associated constant bound, found type
--> $DIR/assoc-const-ty-mismatch.rs:23:15
|
LL | fn foo<F: Foo<N=usize>>() {}
2022-02-01 15:28:31 +00:00
| ^^^^^^^
|
note: associated constant defined here
2022-02-01 15:28:31 +00:00
--> $DIR/assoc-const-ty-mismatch.rs:5:3
|
LL | const N: usize;
2022-02-13 15:27:59 +00:00
| ^^^^^^^^^^^^^^
error: expected associated type bound, found constant
--> $DIR/assoc-const-ty-mismatch.rs:25:18
|
LL | fn foo2<F: FooTy<T=3usize>>() {}
2022-02-01 15:28:31 +00:00
| ^^^^^^^^
|
note: associated type defined here
2022-02-01 15:28:31 +00:00
--> $DIR/assoc-const-ty-mismatch.rs:9:3
|
LL | type T;
2022-02-13 15:27:59 +00:00
| ^^^^^^
error: aborting due to 2 previous errors