aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs199/github_145/add_reads/other.module/other/module/Application.java
blob: ff299017e2d4aab12dc911c3632b1379c68bfae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package other.module;

import java.util.ArrayList;
import java.util.List;

import my.module.Modular;

public class Application {
  List<String> list = new ArrayList<>();
  Modular modular = new Modular();

  public static void main(String[] args) {
    System.out.println("One modular class can use another one");
  }
}