Skip to content

Instantly share code, notes, and snippets.

@amwatson
Created June 3, 2014 20:54
Show Gist options
  • Save amwatson/be9320ca4c24b078283f to your computer and use it in GitHub Desktop.
Save amwatson/be9320ca4c24b078283f to your computer and use it in GitHub Desktop.
int main() { int* static_array ;;
((static_array)[0]) = (1); return 0; }
fn main() -> i32 {
let static_array: u32[50];
static_array[0] = 1;
0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment