compiler-design-eth/javali_tests/HW4_nop90/Casts/OkSubtype.javali

15 lines
179 B
Plaintext

// Test cast from a type to the same type
class Main {
void main() {
C c,d;
Object o,g;
c = new C();
g = new Object();
d = (C) c;
o = (Object) g;
}
}
class C {}