|
Java example source code file (MethodReference51.java)
The MethodReference51.java Java example source code
/*
* @test /nodynamiccopyright/
* @bug 8003280
* @summary Add lambda tests
* certain cases of erroneous member reference lookup are not handled by Attr.visitReference
* @compile/fail/ref=MethodReference51.out -XDrawDiagnostics MethodReference51.java
*/
class MethodReference51 {
private static class Foo {
static int j(int i) { return i; }
}
static Foo foo = new Foo();
static void m(String s) { }
static void m(Integer i) { }
static int f(String s) { return 1; }
static int g(Integer i, Number n) { return 1; }
static int g(Number n, Integer i) { return 1; }
int h(int i) { return i; }
}
class TestMethodReference51 {
interface IntSam {
int m(int i);
}
interface IntegerIntegerSam {
int m(Integer i1, Integer i2);
}
static void test() {
IntSam s1 = MethodReference51::unknown; //fail
IntSam s2 = MethodReference51::f; //fail
IntSam s3 = MethodReference51::g; //fail
IntegerIntegerSam s4 = MethodReference51::g; //fail
IntSam s5 = MethodReference51::h; //fail
IntSam s6 = MethodReference51.foo::j; //fail
}
}
Other Java examples (source code examples)Here is a short list of links related to this Java MethodReference51.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.