4c08a1bed5ceb13549ee1241cdb688ad62c063f1
[mate.git] / tests / Test.java
1 package tests;
2
3 public class Test {
4     private static int foo;
5     private static int bar;
6
7     public static void main(String [] args) {
8       foo = 0x42;
9       bar = 2 * foo;
10     }
11 }