blob: 32016e1278f6d5c0ca3c241b4037940156a4e078 [file] [log] [blame]
// Regression test for issue #28158
// Test the type binding span doesn't include >>
use std::ops::Deref;
fn homura<T: Deref<Trget = i32>>(_: T) {}
//~^ ERROR not found
fn main() {}