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/CastingFoldedValues.java
2002-12-16 18:51:06 +00:00

16 satır
361 B
Java

import org.aspectj.testing.Tester;
public class CastingFoldedValues {
static final char i = 'c';
static boolean foundChar = false;
static void foo(char c) { foundChar = true; }
static void foo(int c) { }
public static void main(String[] args) {
foo(i);
Tester.check(foundChar, "forgot to cast folded char down to char type");
}
}