blob: 5a80a7a8319347be4d093b597e399c8a822d6301 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/*
* Test failure to resolve class members.
*/
class UnresTest1 {
public static void run() {
System.out.println("UnresTest1...");
UnresStuff stuff = new UnresStuff();
try {
int x = stuff.instField;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try { // hit the same one a second time
int x = stuff.instField;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
stuff.instField = 5;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
double d = stuff.wideInstField;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
stuff.wideInstField = 0.0;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
int y = UnresStuff.staticField;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
UnresStuff.staticField = 17;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
double d = UnresStuff.wideStaticField;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
UnresStuff.wideStaticField = 1.0;
assert(false);
} catch (NoSuchFieldError nsfe) {
// good
}
try {
stuff.virtualMethod();
assert(false);
} catch (NoSuchMethodError nsfe) {
// good
}
try {
UnresStuff.staticMethod();
assert(false);
} catch (NoSuchMethodError nsfe) {
// good
}
}
}
|