Skip to content

Instantly share code, notes, and snippets.

@yoshuawuyts
Created April 24, 2018 10:49
Show Gist options
  • Save yoshuawuyts/354711c0ab94be3326228a08e0f52d10 to your computer and use it in GitHub Desktop.
Save yoshuawuyts/354711c0ab94be3326228a08e0f52d10 to your computer and use it in GitHub Desktop.
#[macro_use]
extern crate quickcheck;
extern crate memory_pager;
use self::Operation;
use memory_pager::Pager;
use quickcheck::{Arbitrary, Gen};
#[derive(Clone, Debug)]
enum Operation {
}
impl Arbitrary for Operation {
fn arbitrary<G: Gen>(g: &mut G) -> Self {}
}
quickcheck!{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment