Skip to content

Instantly share code, notes, and snippets.

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