1
0
şunun yansıması https://github.com/eclipse-aspectj/aspectj.git eşitlendi 2024-08-26 05:57:44 +02:00
org.aspectj/tests/pureJava/ReturnTypes.java
2002-12-16 18:51:06 +00:00

12 satır
250 B
Java

import org.aspectj.testing.Tester;
public class ReturnTypes {
public static void main(String[] args) {
Tester.check(convertDouble("2") == 0.0, "return types");
}
static double convertDouble(Object o) {
return 0;
}
}