Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created May 11, 2018 12:58
Show Gist options
  • Save rust-play/a56c0f3af607270c17707e653fece351 to your computer and use it in GitHub Desktop.
Save rust-play/a56c0f3af607270c17707e653fece351 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
#![feature(generators, generator_trait)]
use std::ops::Generator;
use std::mem::size_of;
fn test() -> impl Generator<Yield=(), Return=()> {
return || {
let a: String = "test".into();
yield ();
println!("{}", a);
}
}
fn consume<F, O>(f: F)
where F: Fn() -> O
{
println!("{}", size_of::<O>());
}
fn main() {
consume(test);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment