summaryrefslogtreecommitdiffstats
path: root/test/MemUsage/MemUsage.java.orig
blob: 710031bb20067480d4a2cf896b3ef84e90b6b951 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

public class MemUsage {
  public static final int ROUNDS = 8;
  public static final int SIZE = 2000;

  public static void main(String [] args) {
    String s;
    for (int j = 0; j < ROUNDS; j++) {
      s = "";
      for (int i = 0; i < SIZE; i++) {
        s += "x";
      }
    }
  }
}