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: rust/ql/test/library-tests/type-inference/main.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -438,7 +438,7 @@ mod method_non_parametric_trait_impl {
438
438
439
439
let thing = MyThing{a:S1};
440
440
let i = thing.convert_to();// $ type=i:S1 target=T::convert_to
441
-
let j = convert_to(thing);// $ type=j:S1 target=convert_to
441
+
let j = convert_to(thing);// $ target=convert_to $ MISSING: type=j:S1 -- the blanket implementation `impl<T: MyTrait<S1>> ConvertTo<S1> for T` is currently not included in the constraint analysis
0 commit comments