projects
/
IRC.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
change
[IRC.git]
/
Robust
/
src
/
Tests
/
BoundsFail2.java
1
public class BoundsFail2 {
2
int a;
3
public static void main(String str[]) {
4
int a[]=new int[10];
5
a[10]=2;
6
}
7
}