• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1float foo(float v[2]) { return v[0]=v[1]; }
2void main() { float y[2]; foo(y); }
3