testfile for remote thread invocation
[IRC.git] / Robust / src / Tests / remotethreadtest.java
1 public class RemoteThread extends Thread {
2         public RemoteThread() {
3         }
4
5         public static void main(String[] st) {
6                 int mid = 127;
7                 RemoteThread t =null;
8                 atomic {
9                     t= global new RemoteThread();
10                 }
11                 t.start(mid);
12         }
13 }
14