Skip to content

Instantly share code, notes, and snippets.

@emberian
Created December 6, 2013 08:07
Show Gist options
  • Save emberian/7820203 to your computer and use it in GitHub Desktop.
Save emberian/7820203 to your computer and use it in GitHub Desktop.
fn private() {
println("I am private");
}
mod test {
#[test]
fn test_private() {
super::private();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment