Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created May 11, 2018 12:55
Show Gist options
  • Save rust-play/145daff89b8a698e27ba9c1ab4866a5b to your computer and use it in GitHub Desktop.
Save rust-play/145daff89b8a698e27ba9c1ab4866a5b 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 || {
yield ();
}
}
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