mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8187443: Forest Consolidation: Move files to unified layout
Reviewed-by: darcy, ihse
This commit is contained in:
parent
270fe13182
commit
3789983e89
56923 changed files with 3 additions and 15727 deletions
43
test/langtools/tools/javac/lambda/MethodReference42.java
Normal file
43
test/langtools/tools/javac/lambda/MethodReference42.java
Normal file
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* @test /nodynamiccopyright/
|
||||
* @bug 8003280
|
||||
* @summary Add lambda tests
|
||||
* check that diamond inference is applied when using raw constructor reference qualifier
|
||||
* @compile/fail/ref=MethodReference42.out -XDrawDiagnostics MethodReference42.java
|
||||
*/
|
||||
|
||||
public class MethodReference42 {
|
||||
|
||||
static class SuperFoo<X> { }
|
||||
|
||||
static class Foo<X extends Number> extends SuperFoo<X> { }
|
||||
|
||||
interface SAM1 {
|
||||
SuperFoo<String> m();
|
||||
}
|
||||
|
||||
interface SAM2 {
|
||||
SuperFoo<Integer> m();
|
||||
}
|
||||
|
||||
interface SAM3 {
|
||||
SuperFoo<Object> m();
|
||||
}
|
||||
|
||||
static void m1(SAM1 s) { }
|
||||
|
||||
static void m2(SAM2 s) { }
|
||||
|
||||
static void m3(SAM3 s) { }
|
||||
|
||||
static void m4(SAM1 s) { }
|
||||
static void m4(SAM2 s) { }
|
||||
static void m4(SAM3 s) { }
|
||||
|
||||
public static void main(String[] args) {
|
||||
m1(Foo::new);
|
||||
m2(Foo::new);
|
||||
m3(Foo::new);
|
||||
m4(Foo::new);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue