Skip to content

Instantly share code, notes, and snippets.

@krdln
Created June 16, 2014 18:30
Show Gist options
  • Save krdln/dcf23b120bd21d0776a8 to your computer and use it in GitHub Desktop.
Save krdln/dcf23b120bd21d0776a8 to your computer and use it in GitHub Desktop.
How to make `rustdoc --test` work?
#![crate_type="lib"]
/// increments
///
/// ```
/// let x = bar(41);
/// assert_eq!(x, 42);
/// ```
pub fn bar(x: int) -> int { x + 1 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment