2a46da906c
Add -X flag to report extra compiler diagnostics which migth break compatibility. Use the flag to unconditionally check constructors without fear of prematurely evaluating lazy supertypes. KT-19234 KT-42404 KT-44583
7 lines
86 B
Java
Vendored
7 lines
86 B
Java
Vendored
package test;
|
|
|
|
public class Super {
|
|
String foo() {
|
|
return "Super";
|
|
}
|
|
} |