Skip to content

Instantly share code, notes, and snippets.

@auroranockert
Created July 19, 2013 05:10
Show Gist options
  • Save auroranockert/6036272 to your computer and use it in GitHub Desktop.
Save auroranockert/6036272 to your computer and use it in GitHub Desktop.
extern mod testcrate;
fn main() {
let f = testcrate::V2(1.0f32, 2.0f32);
}
pub struct V2<T>(T, T);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment