You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/ui/const-generics/issues/issue-83765.stderr
+136-2
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,140 @@ LL | trait TensorDimension {
17
17
| ^^^^^^^^^^^^^^^^^^^^^
18
18
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
19
19
20
-
error: aborting due to previous error
20
+
error[E0391]: cycle detected when resolving instance `<LazyUpdim<'_, T, <T as TensorDimension>::DIM, DIM> as TensorDimension>::DIM`
21
+
--> $DIR/issue-83765.rs:5:5
22
+
|
23
+
LL | const DIM: usize;
24
+
| ^^^^^^^^^^^^^^^^
25
+
|
26
+
note: ...which requires computing candidate for `<LazyUpdim<'_, T, <T as TensorDimension>::DIM, DIM> as TensorDimension>`...
27
+
--> $DIR/issue-83765.rs:4:1
28
+
|
29
+
LL | trait TensorDimension {
30
+
| ^^^^^^^^^^^^^^^^^^^^^
31
+
= note: ...which again requires resolving instance `<LazyUpdim<'_, T, <T as TensorDimension>::DIM, DIM> as TensorDimension>::DIM`, completing the cycle
32
+
note: cycle used when checking item types in top-level module
33
+
--> $DIR/issue-83765.rs:1:1
34
+
|
35
+
LL | / #![feature(generic_const_exprs)]
36
+
LL | | #![allow(incomplete_features)]
37
+
LL | |
38
+
LL | | trait TensorDimension {
39
+
... |
40
+
LL | | println!("The size of v is {:?}", bbv.bget([0, 2]).expect("Out of bounds."));
41
+
LL | | }
42
+
| |_^
43
+
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
44
+
45
+
error[E0308]: method not compatible with trait
46
+
--> $DIR/issue-83765.rs:86:5
47
+
|
48
+
LL | fn size(&self) -> [usize; DIM] {
49
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `Self::DIM`, found `DIM`
0 commit comments