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
error[E0412]: cannot find type `Thing` in this scope
2
+
--> $DIR/issue-90319.rs:14:23
3
+
|
4
+
LL | let thing = get::<Thing>();
5
+
| ^^^^^ not found in this scope
6
+
7
+
error[E0275]: overflow evaluating the requirement `_: Sized`
8
+
--> $DIR/issue-90319.rs:16:5
9
+
|
10
+
LL | Trait::method(&wrapper);
11
+
| ^^^^^^^^^^^^^
12
+
|
13
+
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`issue_90319`)
14
+
note: required because of the requirements on the impl of `Trait` for `Wrapper<&_>`
15
+
--> $DIR/issue-90319.rs:7:13
16
+
|
17
+
LL | impl<'a, T> Trait for Wrapper<&'a T> where Wrapper<T>: Trait {}
18
+
| ^^^^^ ^^^^^^^^^^^^^^
19
+
= note: 128 redundant requirements hidden
20
+
= note: required because of the requirements on the impl of `Trait` for `Wrapper<&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&_>`
21
+
22
+
error: aborting due to 2 previous errors
23
+
24
+
Some errors have detailed explanations: E0275, E0412.
25
+
For more information about an error, try `rustc --explain E0275`.
0 commit comments