2022-07-29 05:48:40 +00:00
|
|
|
error: expected associated constant bound, found type
|
2022-01-28 18:14:27 +00:00
|
|
|
--> $DIR/assoc-const-ty-mismatch.rs:23:15
|
|
|
|
|
|
|
|
|
LL | fn foo<F: Foo<N=usize>>() {}
|
2022-02-01 15:28:31 +00:00
|
|
|
| ^^^^^^^
|
|
|
|
|
|
2022-07-29 05:48:40 +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
|
|
|
| ^^^^^^^^^^^^^^
|
2022-01-28 18:14:27 +00:00
|
|
|
|
2022-07-29 05:48:40 +00:00
|
|
|
error: expected associated type bound, found constant
|
2022-01-28 18:14:27 +00:00
|
|
|
--> $DIR/assoc-const-ty-mismatch.rs:25:18
|
|
|
|
|
|
|
|
|
LL | fn foo2<F: FooTy<T=3usize>>() {}
|
2022-02-01 15:28:31 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
2022-07-29 05:48:40 +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
|
|
|
| ^^^^^^
|
2022-01-28 18:14:27 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|