]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/type-binding.rs
Merge commit '2b2190cb5667cdd276a24ef8b9f3692209c54a89' 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() {}