Searched refs:LambdaScope03 (Results 1 - 1 of 1) sorted by relevance

/openjdk10/langtools/test/tools/javac/lambda/
H A DLambdaScope03.java30 * @run main LambdaScope03
33 public class LambdaScope03 { class
50 call(()-> { assertTrue(LambdaScope03.this.getClass().equals(getClass())); });
51 call(()-> { assertTrue(LambdaScope03.this.getClass().equals(this.getClass())); });
52 call(()-> { assertTrue(LambdaScope03.this.hashCode() == hashCode()); });
53 call(()-> { assertTrue(LambdaScope03.this.hashCode() == this.hashCode()); });
54 call(()-> { assertTrue(LambdaScope03.this.toString().equals(toString())); });
55 call(()-> { assertTrue(LambdaScope03.this.toString().equals(this.toString())); });
56 call(()-> { assertTrue(LambdaScope03.this.equals(this)); });
57 call(()-> { assertTrue(equals(LambdaScope03
[all...]

Completed in 40 milliseconds