blob: a56ab990b420a935ebe7d9741698cd9172405d49 (
plain)
1
2
3
4
5
6
7
8
9
|
import org.aspectj.testing.Tester;
public class TypeCoercions {
public static void main(String[] args) {
char c1 = 'e', c2 = 'f';
Tester.checkEqual("hello".indexOf(c1), 1);
Tester.checkEqual("hello".indexOf(c2), -1);
}
}
|