spl

systems programming language
git clone http://frotz.net/git/spl.git
Log | Files | Refs | README | LICENSE

2003-err-decl-mismatch-array.spl (71B)


      1 
      2 fn a1a1a1(aaa [17]i32) {
      3 }
      4 
      5 fn bad() {
      6 	var z [10]i32;
      7 	a1a1a1(z);
      8 }