Created
November 22, 2012 20:28
-
-
Save brson/4132820 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Prep { | |
ctxt: &int, | |
} | |
struct Result<T> { | |
prep: Prep, | |
} | |
impl Prep { | |
fn exec<T>(&self) -> Result/&self<T> { | |
fail | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment