]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/crashes/ice-5238.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-5238.rs
CommitLineData
f20569fa
XL
1// Regression test for #5238 / https://github.com/rust-lang/rust/pull/69562
2
3#![feature(generators, generator_trait)]
4
5fn main() {
6 let _ = || {
7 yield;
8 };
9}