* .hgignore: Ignoring class files.
[cacao.git] / tests / regression / clinitexception.java
1 public class clinitexception {
2     static {
3         if (true)
4             throw new RuntimeException();
5     }
6
7     public static void main(String[] argv) {
8     }
9 }