| 22 | } |
| 23 | |
| 24 | class SharedUser implements HasID { |
| 25 | private final int id; |
| 26 | SharedUser(SharedArg sa) { |
| 27 | id = sa.get(); |
| 28 | } |
| 29 | @Override public int getID() { return id; } |
| 30 | } |
| 31 | |
| 32 | public class SharedConstructorArgument { |
| 33 | public static void main(String[] args) { |
nothing calls this directly
no outgoing calls
no test coverage detected