Skip to content

Instantly share code, notes, and snippets.

@msullivan
Created July 16, 2012 23:06
Show Gist options
  • Save msullivan/3125654 to your computer and use it in GitHub Desktop.
Save msullivan/3125654 to your computer and use it in GitHub Desktop.
mod foo {
fn f() { }
}
mod bar {
import foo::f;
mod foo {
fn thing() { f(); }
}
}
fn main() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment