mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00

Attr.adjustMethodReturnType() tweaks return types w/o checking what method is being patched Reviewed-by: vromero
14 lines
309 B
Java
14 lines
309 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 8161985
|
|
* @summary Spurious override of Object.getClass leads to NPE
|
|
* @compile/fail/ref=T8161985b.out -XDrawDiagnostics T8161985b.java
|
|
*/
|
|
|
|
class T8161985b {
|
|
public String getClass() { return ""; }
|
|
|
|
void test() {
|
|
this.getClass().getSimpleName();
|
|
}
|
|
}
|