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