MCPcopy Create free account
hub / github.com/LFYSec/MScan / main

Method main

src/test/resources/pta/invokedynamic/MultiStatement.java:5–12  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

3public class MultiStatement {
4
5 public static void main(String[] args){
6 Runnable noArguments = () -> {
7 System.out.println("Hello World");
8 System.out.println("Hello World");
9 };
10 noArguments.run();
11 int result = getValue(3,5);
12 }
13
14 static int getValue(int input1, int input2){
15 BinaryOperator<Integer> function = (Integer x, Integer y) -> x + y + 2;

Callers

nothing calls this directly

Calls 2

getValueMethod · 0.95
runMethod · 0.45

Tested by

no test coverage detected