]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/type-binding.rs
Merge commit '0e87918536b9833bbc6c683d1f9d51ee2bf03ef1' into clippyup
[rust.git] / src / test / ui / span / type-binding.rs
1 // Regression test for issue #28158
2 // Test the type binding span doesn't include >>
3
4 use std::ops::Deref;
5
6 fn homura<T: Deref<Trget = i32>>(_: T) {}
7 //~^ ERROR not found
8
9 fn main() {}