spl

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

2011-err-array-oob-const.spl (61B)


      1 
      2 var blarg [256]byte;
      3 
      4 fn bad() {
      5 	var n i32 = blarg[256];
      6 }