Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
15 lines
368 B
Java
15 lines
368 B
Java
/*
|
|
* @test
|
|
* @bug 8169091
|
|
* @summary Method reference T::methodName for generic type T does not compile any more
|
|
* @compile T8169091.java
|
|
*/
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Comparator;
|
|
|
|
interface T8169091 {
|
|
static <T extends Comparable<? super T>> Comparator<T> comparator() {
|
|
return (Comparator<T> & Serializable)T::compareTo;
|
|
}
|
|
}
|