]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/crashes/trivial_bounds.rs
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / crashes / trivial_bounds.rs
CommitLineData
f20569fa
XL
1#![feature(trivial_bounds)]
2#![allow(unused, trivial_bounds)]
3
4fn test_trivial_bounds()
5where
6 i32: Iterator,
7{
8 for _ in 2i32 {}
9}
10
11fn main() {}