Initial revision
[cacao.git] / tests / extest.java
1 import java.io.*;
2
3 public class extest extends Object
4 {
5     public static void main (String args[])
6     {
7         try
8         {
9             RandomAccessFile file = new RandomAccessFile("test.file", "rw");
10             
11             file.seek(file.length());
12         }
13         catch (Exception exc)
14         {
15             System.out.println("could not open file");
16         }
17     }
18 }