Skip to content

Instantly share code, notes, and snippets.

@mfirry
Created January 28, 2015 15:23
Show Gist options
  • Save mfirry/74d54b2251c55e1c6830 to your computer and use it in GitHub Desktop.
Save mfirry/74d54b2251c55e1c6830 to your computer and use it in GitHub Desktop.
Weird error: this gives compilation error: the trait `core::ops::Index<u64>` is not implemented for the type `[i64]` [E0277]
fn get_n(array: &[i64; 4], position: u64) -> i64 {
array[position];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment