about summary refs log tree commit diff
path: root/tests/run-make/missing-unstable-trait-bound/missing-bound.rs
blob: 65d0745f49440fa4f090a1a9ed9ca0c1c5af96c2 (plain)
1
2
3
4
pub fn baz<T>(t: std::ops::Range<T>) {
    for _ in t {}
}
fn main() {}