]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/immovable_generators.rs
Sync core::simd up to rust-lang/portable-simd@2e081db92aa3ee0a4563bc28ce01bdad5b1b2efd
[rust.git] / src / tools / rustfmt / tests / target / immovable_generators.rs
1 #![feature(generators)]
2
3 unsafe fn foo() {
4     let mut ga = static || {
5         yield 1;
6     };
7 }